/* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ function test() { waitForExplicitFinish(); let doc; let nodes; let cursor; gBrowser.selectedTab = gBrowser.addTab(); gBrowser.selectedBrowser.addEventListener("load", function onload() { gBrowser.selectedBrowser.removeEventListener("load", onload, true); doc = content.document; waitForFocus(setupInfobarTest, content); }, true); let style = "body{width:100%;height: 100%} div {position: absolute;height: 100px;width: 500px}#bottom {bottom: 0px}#vertical {height: 100%}"; let html = "
" content.location = "data:text/html," + encodeURIComponent(html); function setupInfobarTest() { nodes = [ {node: doc.querySelector("#top"), position: "bottom", tag: "DIV", id: "#top", classes: ".class1 .class2"}, {node: doc.querySelector("#vertical"), position: "overlap", tag: "DIV", id: "#vertical", classes: ""}, {node: doc.querySelector("#bottom"), position: "top", tag: "DIV", id: "#bottom", classes: ""}, {node: doc.querySelector("body"), position: "overlap", tag: "BODY", id: "", classes: ""}, ] for (let i = 0; i < nodes.length; i++) { ok(nodes[i].node, "node " + i + " found"); } Services.obs.addObserver(runTests, InspectorUI.INSPECTOR_NOTIFICATIONS.OPENED, false); InspectorUI.toggleInspectorUI(); } function runTests() { Services.obs.removeObserver(runTests, InspectorUI.INSPECTOR_NOTIFICATIONS.OPENED); cursor = 0; executeSoon(function() { Services.obs.addObserver(nodeSelected, InspectorUI.INSPECTOR_NOTIFICATIONS.HIGHLIGHTING, false); InspectorUI.inspectNode(nodes[0].node); }); } function nodeSelected() { executeSoon(function() { performTest(); cursor++; if (cursor >= nodes.length) { Services.obs.removeObserver(nodeSelected, InspectorUI.INSPECTOR_NOTIFICATIONS.HIGHLIGHTING); Services.obs.addObserver(finishUp, InspectorUI.INSPECTOR_NOTIFICATIONS.CLOSED, false); executeSoon(function() { InspectorUI.closeInspectorUI(); }); } else { let node = nodes[cursor].node; InspectorUI.inspectNode(node); } }); } function performTest() { let container = document.getElementById("highlighter-nodeinfobar-container"); is(container.getAttribute("position"), nodes[cursor].position, "node " + cursor + ": position matches."); let tagNameLabel = document.getElementById("highlighter-nodeinfobar-tagname"); is(tagNameLabel.textContent, nodes[cursor].tag, "node " + cursor + ": tagName matches."); let idLabel = document.getElementById("highlighter-nodeinfobar-id"); is(idLabel.textContent, nodes[cursor].id, "node " + cursor + ": id matches."); let classesBox = document.getElementById("highlighter-nodeinfobar-classes"); let displayedClasses = []; for (let i = 0; i < classesBox.childNodes.length; i++) { displayedClasses.push(classesBox.childNodes[i].textContent); } displayedClasses = displayedClasses.join(" "); is(displayedClasses, nodes[cursor].classes, "node " + cursor + ": classes match."); } function finishUp() { Services.obs.removeObserver(finishUp, InspectorUI.INSPECTOR_NOTIFICATIONS.CLOSED); doc = nodes = null; gBrowser.removeCurrentTab(); finish(); } }