summaryrefslogtreecommitdiff
path: root/browser/devtools/inspector/test/browser_inspector_initialization.js
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2014-05-21 11:38:25 +0200
committerwolfbeast <mcwerewolf@gmail.com>2014-05-21 11:38:25 +0200
commitd25ba7d760b017b038e5aa6c0a605b4a330eb68d (patch)
tree16ec27edc7d5f83986f16236d3a36a2682a0f37e /browser/devtools/inspector/test/browser_inspector_initialization.js
parenta942906574671868daf122284a9c4689e6924f74 (diff)
downloadpalemoon-gre-d25ba7d760b017b038e5aa6c0a605b4a330eb68d.tar.gz
Recommit working copy to repo with proper line endings.
Diffstat (limited to 'browser/devtools/inspector/test/browser_inspector_initialization.js')
-rw-r--r--browser/devtools/inspector/test/browser_inspector_initialization.js140
1 files changed, 140 insertions, 0 deletions
diff --git a/browser/devtools/inspector/test/browser_inspector_initialization.js b/browser/devtools/inspector/test/browser_inspector_initialization.js
new file mode 100644
index 000000000..56e6ec493
--- /dev/null
+++ b/browser/devtools/inspector/test/browser_inspector_initialization.js
@@ -0,0 +1,140 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=2 et sw=2 tw=80: */
+/* 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/. */
+let doc;
+let salutation;
+
+function createDocument()
+{
+ doc.body.innerHTML = '<div id="first" style="{ margin: 10em; ' +
+ 'font-size: 14pt; font-family: helvetica, sans-serif; color: #AAA}">\n' +
+ '<h1>Some header text</h1>\n' +
+ '<p id="salutation" style="{font-size: 12pt}">hi.</p>\n' +
+ '<p id="body" style="{font-size: 12pt}">I am a test-case. This text exists ' +
+ 'solely to provide some things to test the inspector initialization.</p>\n' +
+ 'If you are reading this, you should go do something else instead. Maybe ' +
+ 'read a book. Or better yet, write some test-cases for another bit of code. ' +
+ '<span style="{font-style: italic}">Inspector\'s!</span></p>\n' +
+ '<p id="closing">end transmission</p>\n' +
+ '</div>';
+ doc.title = "Inspector Initialization Test";
+
+ let target = TargetFactory.forTab(gBrowser.selectedTab);
+ gDevTools.showToolbox(target, "inspector").then(function(toolbox) {
+ startInspectorTests(toolbox);
+ }).then(null, console.error);
+}
+
+function startInspectorTests(toolbox)
+{
+ let inspector = toolbox.getCurrentPanel();
+ ok(true, "Inspector started, and notification received.");
+
+ ok(inspector, "Inspector instance is accessible");
+ ok(inspector.isReady, "Inspector instance is ready");
+ is(inspector.target.tab, gBrowser.selectedTab, "Valid target");
+ ok(inspector.highlighter, "Highlighter is up");
+
+ let p = doc.querySelector("p");
+
+ inspector.selection.setNode(p);
+
+ testHighlighter(p);
+ testMarkupView(p);
+ testBreadcrumbs(p);
+
+ let span = doc.querySelector("span");
+ span.scrollIntoView();
+
+ inspector.selection.setNode(span);
+
+ testHighlighter(span);
+ testMarkupView(span);
+ testBreadcrumbs(span);
+
+ toolbox.once("destroyed", function() {
+ ok("true", "'destroyed' notification received.");
+ let target = TargetFactory.forTab(gBrowser.selectedTab);
+ ok(!gDevTools.getToolbox(target), "Toolbox destroyed.");
+ executeSoon(runContextMenuTest);
+ });
+ toolbox.destroy();
+}
+
+
+function testHighlighter(node)
+{
+ ok(isHighlighting(), "Highlighter is highlighting");
+ is(getHighlitNode(), node, "Right node is highlighted");
+}
+
+function testMarkupView(node)
+{
+ let i = getActiveInspector();
+ is(i.markup._selectedContainer.node, node, "Right node is selected in the markup view");
+}
+
+function testBreadcrumbs(node)
+{
+ let b = getActiveInspector().breadcrumbs;
+ let expectedText = b.prettyPrintNodeAsText(node);
+ let button = b.container.querySelector("button[checked=true]");
+ ok(button, "A crumbs is checked=true");
+ is(button.getAttribute("tooltiptext"), expectedText, "Crumb refers to the right node");
+}
+
+function _clickOnInspectMenuItem(node) {
+ document.popupNode = node;
+ var contentAreaContextMenu = document.getElementById("contentAreaContextMenu");
+ var contextMenu = new nsContextMenu(contentAreaContextMenu);
+ return contextMenu.inspectNode();
+}
+
+function runContextMenuTest()
+{
+ salutation = doc.getElementById("salutation");
+ _clickOnInspectMenuItem(salutation).then(testInitialNodeIsSelected);
+}
+
+function testInitialNodeIsSelected() {
+ testHighlighter(salutation);
+ testMarkupView(salutation);
+ testBreadcrumbs(salutation);
+ inspectNodesFromContextTestWhileOpen();
+}
+
+function inspectNodesFromContextTestWhileOpen()
+{
+ let closing = doc.getElementById("closing");
+ getActiveInspector().selection.once("new-node", function() {
+ ok(true, "Get selection's 'new-node' selection");
+ executeSoon(function() {
+ testHighlighter(closing);
+ testMarkupView(closing);
+ testBreadcrumbs(closing);
+ finishInspectorTests();
+ }
+ )});
+ _clickOnInspectMenuItem(closing);
+}
+
+function finishInspectorTests(subject, topic, aWinIdString)
+{
+ gBrowser.removeCurrentTab();
+ finish();
+}
+
+function test()
+{
+ waitForExplicitFinish();
+ gBrowser.selectedTab = gBrowser.addTab();
+ gBrowser.selectedBrowser.addEventListener("load", function() {
+ gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true);
+ doc = content.document;
+ waitForFocus(createDocument, content);
+ }, true);
+
+ content.location = "data:text/html,basic tests for inspector";
+}