Skip to content

Commit

Permalink
Bug 1346378 - Grid inspector toggle should appear for display: [inlin…
Browse files Browse the repository at this point in the history
…e-]grid !important declarations. r=jdescottes
  • Loading branch information
gabrielluong committed Mar 17, 2017
1 parent 3c0cff3 commit 479beb9
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 4 deletions.
1 change: 1 addition & 0 deletions devtools/client/inspector/rules/test/browser.ini
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ skip-if = (os == "win" && debug) # bug 963492: win.
[browser_rules_grid-toggle_01b.js]
[browser_rules_grid-toggle_02.js]
[browser_rules_grid-toggle_03.js]
[browser_rules_grid-toggle_04.js]
[browser_rules_guessIndentation.js]
[browser_rules_inherited-properties_01.js]
[browser_rules_inherited-properties_02.js]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test toggling the grid highlighter in the rule view from a 'display: grid !important'
// declaration.

const TEST_URI = `
<style type='text/css'>
#grid {
display: grid !important;
}
</style>
<div id="grid">
<div id="cell1">cell1</div>
<div id="cell2">cell2</div>
</div>
`;

const HIGHLIGHTER_TYPE = "CssGridHighlighter";

add_task(function* () {
yield addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
let {inspector, view} = yield openRuleView();
let highlighters = view.highlighters;

yield selectNode("#grid", inspector);
let container = getRuleViewProperty(view, "#grid", "display").valueSpan;
let gridToggle = container.querySelector(".ruleview-grid");

info("Checking the initial state of the CSS grid toggle in the rule-view.");
ok(gridToggle, "Grid highlighter toggle is visible.");
ok(!gridToggle.classList.contains("active"),
"Grid highlighter toggle button is not active.");
ok(!highlighters.highlighters[HIGHLIGHTER_TYPE],
"No CSS grid highlighter exists in the rule-view.");
ok(!highlighters.gridHighlighterShown, "No CSS grid highlighter is shown.");

info("Toggling ON the CSS grid highlighter from the rule-view.");
let onHighlighterShown = highlighters.once("grid-highlighter-shown");
gridToggle.click();
yield onHighlighterShown;

info("Checking the CSS grid highlighter is created and toggle button is active in " +
"the rule-view.");
ok(gridToggle.classList.contains("active"),
"Grid highlighter toggle is active.");
ok(highlighters.highlighters[HIGHLIGHTER_TYPE],
"CSS grid highlighter created in the rule-view.");
ok(highlighters.gridHighlighterShown, "CSS grid highlighter is shown.");

info("Toggling OFF the CSS grid highlighter from the rule-view.");
let onHighlighterHidden = highlighters.once("grid-highlighter-hidden");
gridToggle.click();
yield onHighlighterHidden;

info("Checking the CSS grid highlighter is not shown and toggle button is not active " +
"in the rule-view.");
ok(!gridToggle.classList.contains("active"),
"Grid highlighter toggle button is not active.");
ok(!highlighters.gridHighlighterShown, "No CSS grid highlighter is shown.");
});
5 changes: 1 addition & 4 deletions devtools/client/shared/output-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,17 +289,14 @@ OutputParser.prototype = {
*
* @param {String} text
* the parsed text.
*
* @param {Object} token
* the parsed token.
*
* @param {Object} options
* the options given to _parse.
*/
_isDisplayGrid: function (text, token, options) {
return options.expectDisplay &&
(token.text === "grid" || token.text === "inline-grid") &&
text === token.text;
(token.text === "grid" || token.text === "inline-grid");
},

/**
Expand Down

0 comments on commit 479beb9

Please sign in to comment.