summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_highlighter-options.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/inspector/test/browser_inspector_highlighter-options.js')
-rw-r--r--devtools/client/inspector/test/browser_inspector_highlighter-options.js204
1 files changed, 204 insertions, 0 deletions
diff --git a/devtools/client/inspector/test/browser_inspector_highlighter-options.js b/devtools/client/inspector/test/browser_inspector_highlighter-options.js
new file mode 100644
index 000000000..65a6ec4b0
--- /dev/null
+++ b/devtools/client/inspector/test/browser_inspector_highlighter-options.js
@@ -0,0 +1,204 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+// Check that the box-model highlighter supports configuration options
+
+const TEST_URL = `
+ <body style="padding:2em;">
+ <div style="width:100px;height:100px;padding:2em;
+ border:.5em solid black;margin:1em;">test</div>
+ </body>
+`;
+
+// Test data format:
+// - desc: a string that will be output to the console.
+// - options: json object to be passed as options to the highlighter.
+// - checkHighlighter: a generator (async) function that should check the
+// highlighter is correct.
+const TEST_DATA = [
+ {
+ desc: "Guides and infobar should be shown by default",
+ options: {},
+ checkHighlighter: function* (testActor) {
+ let hidden = yield testActor.getHighlighterNodeAttribute(
+ "box-model-infobar-container", "hidden");
+ ok(!hidden, "Node infobar is visible");
+
+ hidden = yield testActor.getHighlighterNodeAttribute(
+ "box-model-elements", "hidden");
+ ok(!hidden, "SVG container is visible");
+
+ for (let side of ["top", "right", "bottom", "left"]) {
+ hidden = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-" + side, "hidden");
+ ok(!hidden, side + " guide is visible");
+ }
+ }
+ },
+ {
+ desc: "All regions should be shown by default",
+ options: {},
+ checkHighlighter: function* (testActor) {
+ for (let region of ["margin", "border", "padding", "content"]) {
+ let {d} = yield testActor.getHighlighterRegionPath(region);
+ ok(d, "Region " + region + " has set coordinates");
+ }
+ }
+ },
+ {
+ desc: "Guides can be hidden",
+ options: {hideGuides: true},
+ checkHighlighter: function* (testActor) {
+ for (let side of ["top", "right", "bottom", "left"]) {
+ let hidden = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-" + side, "hidden");
+ is(hidden, "true", side + " guide has been hidden");
+ }
+ }
+ },
+ {
+ desc: "Infobar can be hidden",
+ options: {hideInfoBar: true},
+ checkHighlighter: function* (testActor) {
+ let hidden = yield testActor.getHighlighterNodeAttribute(
+ "box-model-infobar-container", "hidden");
+ is(hidden, "true", "infobar has been hidden");
+ }
+ },
+ {
+ desc: "One region only can be shown (1)",
+ options: {showOnly: "content"},
+ checkHighlighter: function* (testActor) {
+ let {d} = yield testActor.getHighlighterRegionPath("margin");
+ ok(!d, "margin region is hidden");
+
+ ({d} = yield testActor.getHighlighterRegionPath("border"));
+ ok(!d, "border region is hidden");
+
+ ({d} = yield testActor.getHighlighterRegionPath("padding"));
+ ok(!d, "padding region is hidden");
+
+ ({d} = yield testActor.getHighlighterRegionPath("content"));
+ ok(d, "content region is shown");
+ }
+ },
+ {
+ desc: "One region only can be shown (2)",
+ options: {showOnly: "margin"},
+ checkHighlighter: function* (testActor) {
+ let {d} = yield testActor.getHighlighterRegionPath("margin");
+ ok(d, "margin region is shown");
+
+ ({d} = yield testActor.getHighlighterRegionPath("border"));
+ ok(!d, "border region is hidden");
+
+ ({d} = yield testActor.getHighlighterRegionPath("padding"));
+ ok(!d, "padding region is hidden");
+
+ ({d} = yield testActor.getHighlighterRegionPath("content"));
+ ok(!d, "content region is hidden");
+ }
+ },
+ {
+ desc: "Guides can be drawn around a given region (1)",
+ options: {region: "padding"},
+ checkHighlighter: function* (testActor) {
+ let topY1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-top", "y1");
+ let rightX1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-right", "x1");
+ let bottomY1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-bottom", "y1");
+ let leftX1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-left", "x1");
+
+ let {points} = yield testActor.getHighlighterRegionPath("padding");
+ points = points[0];
+
+ is(Math.ceil(topY1), points[0][1], "Top guide's y1 is correct");
+ is(Math.floor(rightX1), points[1][0], "Right guide's x1 is correct");
+ is(Math.floor(bottomY1), points[2][1], "Bottom guide's y1 is correct");
+ is(Math.ceil(leftX1), points[3][0], "Left guide's x1 is correct");
+ }
+ },
+ {
+ desc: "Guides can be drawn around a given region (2)",
+ options: {region: "margin"},
+ checkHighlighter: function* (testActor) {
+ let topY1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-top", "y1");
+ let rightX1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-right", "x1");
+ let bottomY1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-bottom", "y1");
+ let leftX1 = yield testActor.getHighlighterNodeAttribute(
+ "box-model-guide-left", "x1");
+
+ let {points} = yield testActor.getHighlighterRegionPath("margin");
+ points = points[0];
+
+ is(Math.ceil(topY1), points[0][1], "Top guide's y1 is correct");
+ is(Math.floor(rightX1), points[1][0], "Right guide's x1 is correct");
+ is(Math.floor(bottomY1), points[2][1], "Bottom guide's y1 is correct");
+ is(Math.ceil(leftX1), points[3][0], "Left guide's x1 is correct");
+ }
+ },
+ {
+ desc: "When showOnly is used, other regions can be faded",
+ options: {showOnly: "margin", onlyRegionArea: true},
+ checkHighlighter: function* (testActor) {
+ for (let region of ["margin", "border", "padding", "content"]) {
+ let {d} = yield testActor.getHighlighterRegionPath(region);
+ ok(d, "Region " + region + " is shown (it has a d attribute)");
+
+ let faded = yield testActor.getHighlighterNodeAttribute(
+ "box-model-" + region, "faded");
+ if (region === "margin") {
+ ok(!faded, "The margin region is not faded");
+ } else {
+ is(faded, "true", "Region " + region + " is faded");
+ }
+ }
+ }
+ },
+ {
+ desc: "When showOnly is used, other regions can be faded (2)",
+ options: {showOnly: "padding", onlyRegionArea: true},
+ checkHighlighter: function* (testActor) {
+ for (let region of ["margin", "border", "padding", "content"]) {
+ let {d} = yield testActor.getHighlighterRegionPath(region);
+ ok(d, "Region " + region + " is shown (it has a d attribute)");
+
+ let faded = yield testActor.getHighlighterNodeAttribute(
+ "box-model-" + region, "faded");
+ if (region === "padding") {
+ ok(!faded, "The padding region is not faded");
+ } else {
+ is(faded, "true", "Region " + region + " is faded");
+ }
+ }
+ }
+ }
+];
+
+add_task(function* () {
+ let {inspector, testActor} = yield openInspectorForURL(
+ "data:text/html;charset=utf-8," + encodeURI(TEST_URL));
+
+ let divFront = yield getNodeFront("div", inspector);
+
+ for (let {desc, options, checkHighlighter} of TEST_DATA) {
+ info("Running test: " + desc);
+
+ info("Show the box-model highlighter with options " + options);
+ yield inspector.highlighter.showBoxModel(divFront, options);
+
+ yield checkHighlighter(testActor);
+
+ info("Hide the box-model highlighter");
+ yield inspector.highlighter.hideBoxModel();
+ }
+});