/* 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 with multiple grids in the page.
const TEST_URI = `
`;
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;
info("Selecting the first grid container.");
yield selectNode("#grid1", inspector);
let container = getRuleViewProperty(view, ".grid", "display").valueSpan;
let gridToggle = container.querySelector(".ruleview-grid");
info("Checking the state of the CSS grid toggle for the first grid container 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 for the first grid container from the " +
"rule-view.");
let onHighlighterShown = highlighters.once("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("Selecting the second grid container.");
yield selectNode("#grid2", inspector);
let firstGridHighterShown = highlighters.gridHighlighterShown;
container = getRuleViewProperty(view, ".grid", "display").valueSpan;
gridToggle = container.querySelector(".ruleview-grid");
info("Checking the state of the CSS grid toggle for the second grid container 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.gridHighlighterShown, "CSS grid highlighter is still shown.");
info("Toggling ON the CSS grid highlighter for the second grid container from the " +
"rule-view.");
onHighlighterShown = highlighters.once("highlighter-shown");
gridToggle.click();
yield onHighlighterShown;
info("Checking the CSS grid highlighter is created for the second grid container and " +
"toggle button is active in the rule-view.");
ok(gridToggle.classList.contains("active"),
"Grid highlighter toggle is active.");
ok(highlighters.gridHighlighterShown != firstGridHighterShown,
"Grid highlighter for the second grid container is shown.");
info("Selecting the first grid container.");
yield selectNode("#grid1", inspector);
container = getRuleViewProperty(view, ".grid", "display").valueSpan;
gridToggle = container.querySelector(".ruleview-grid");
info("Checking the state of the CSS grid toggle for the first grid container in the " +
"rule-view.");
ok(gridToggle, "Grid highlighter toggle is visible.");
ok(!gridToggle.classList.contains("active"),
"Grid highlighter toggle button is not active.");
});