/* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; // Test toggling the grid highlighter in the grid inspector panel with multiple grids in // the page. const TEST_URI = `
cell1
cell2
cell1
cell2
`; add_task(async function () { await pushPref("devtools.gridinspector.maxHighlighters", 1); await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI)); const { inspector, gridInspector } = await openLayoutView(); const { document: doc } = gridInspector; const { highlighters, store } = inspector; await selectNode("#grid1", inspector); const gridList = doc.getElementById("grid-list"); const checkbox1 = gridList.children[0].querySelector("input"); const checkbox2 = gridList.children[1].querySelector("input"); info("Checking the initial state of the Grid Inspector."); is(gridList.childNodes.length, 2, "2 grid containers are listed."); ok( !checkbox1.checked, `Grid item ${checkbox1.value} is unchecked in the grid list.` ); ok( !checkbox2.checked, `Grid item ${checkbox2.value} is unchecked in the grid list.` ); ok(!highlighters.gridHighlighters.size, "No CSS grid highlighter is shown."); info("Toggling ON the CSS grid highlighter for #grid1."); let onHighlighterShown = highlighters.once("grid-highlighter-shown"); let onCheckboxChange = waitUntilState( store, state => state.grids.length == 2 && state.grids[0].highlighted && !state.grids[1].highlighted ); checkbox1.click(); await onHighlighterShown; await onCheckboxChange; info("Checking the CSS grid highlighter is created."); is(highlighters.gridHighlighters.size, 1, "CSS grid highlighter is shown."); info("Toggling ON the CSS grid highlighter for #grid2."); onHighlighterShown = highlighters.once("grid-highlighter-shown"); onCheckboxChange = waitUntilState( store, state => state.grids.length == 2 && !state.grids[0].highlighted && state.grids[1].highlighted ); checkbox2.click(); await onHighlighterShown; await onCheckboxChange; info("Checking the CSS grid highlighter is still shown."); is(highlighters.gridHighlighters.size, 1, "CSS grid highlighter is shown."); info("Toggling OFF the CSS grid highlighter from the layout panel."); const onHighlighterHidden = highlighters.once("grid-highlighter-hidden"); onCheckboxChange = waitUntilState( store, state => state.grids.length == 2 && !state.grids[0].highlighted && !state.grids[1].highlighted ); checkbox2.click(); await onHighlighterHidden; await onCheckboxChange; info("Checking the CSS grid highlighter is not shown."); ok(!highlighters.gridHighlighters.size, "No CSS grid highlighter is shown."); });