summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/browser_toolbox_options_disable_js.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/framework/test/browser_toolbox_options_disable_js.js')
-rw-r--r--devtools/client/framework/test/browser_toolbox_options_disable_js.js119
1 files changed, 119 insertions, 0 deletions
diff --git a/devtools/client/framework/test/browser_toolbox_options_disable_js.js b/devtools/client/framework/test/browser_toolbox_options_disable_js.js
new file mode 100644
index 000000000..b0c14a805
--- /dev/null
+++ b/devtools/client/framework/test/browser_toolbox_options_disable_js.js
@@ -0,0 +1,119 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* 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/ */
+
+// Tests that disabling JavaScript for a tab works as it should.
+
+const TEST_URI = URL_ROOT + "browser_toolbox_options_disable_js.html";
+
+function test() {
+ addTab(TEST_URI).then(tab => {
+ let target = TargetFactory.forTab(tab);
+ gDevTools.showToolbox(target).then(testSelectTool);
+ });
+}
+
+function testSelectTool(toolbox) {
+ toolbox.once("options-selected", () => testToggleJS(toolbox));
+ toolbox.selectTool("options");
+}
+
+let testToggleJS = Task.async(function* (toolbox) {
+ ok(true, "Toolbox selected via selectTool method");
+
+ yield testJSEnabled();
+ yield testJSEnabledIframe();
+
+ // Disable JS.
+ yield toggleJS(toolbox);
+
+ yield testJSDisabled();
+ yield testJSDisabledIframe();
+
+ // Re-enable JS.
+ yield toggleJS(toolbox);
+
+ yield testJSEnabled();
+ yield testJSEnabledIframe();
+
+ finishUp(toolbox);
+});
+
+function* testJSEnabled() {
+ info("Testing that JS is enabled");
+
+ // We use waitForTick here because switching docShell.allowJavascript to true
+ // takes a while to become live.
+ yield waitForTick();
+
+ yield ContentTask.spawn(gBrowser.selectedBrowser, {}, function () {
+ let doc = content.document;
+ let output = doc.getElementById("output");
+ doc.querySelector("#logJSEnabled").click();
+ is(output.textContent, "JavaScript Enabled", 'Output is "JavaScript Enabled"');
+ });
+}
+
+function* testJSEnabledIframe() {
+ info("Testing that JS is enabled in the iframe");
+
+ yield ContentTask.spawn(gBrowser.selectedBrowser, {}, function () {
+ let doc = content.document;
+ let iframe = doc.querySelector("iframe");
+ let iframeDoc = iframe.contentDocument;
+ let output = iframeDoc.getElementById("output");
+ iframeDoc.querySelector("#logJSEnabled").click();
+ is(output.textContent, "JavaScript Enabled",
+ 'Output is "JavaScript Enabled" in iframe');
+ });
+}
+
+function* toggleJS(toolbox) {
+ let panel = toolbox.getCurrentPanel();
+ let cbx = panel.panelDoc.getElementById("devtools-disable-javascript");
+
+ if (cbx.checked) {
+ info("Clearing checkbox to re-enable JS");
+ } else {
+ info("Checking checkbox to disable JS");
+ }
+
+ let browserLoaded = BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
+ cbx.click();
+ yield browserLoaded;
+}
+
+function* testJSDisabled() {
+ info("Testing that JS is disabled");
+
+ yield ContentTask.spawn(gBrowser.selectedBrowser, {}, function () {
+ let doc = content.document;
+ let output = doc.getElementById("output");
+ doc.querySelector("#logJSDisabled").click();
+
+ ok(output.textContent !== "JavaScript Disabled",
+ 'output is not "JavaScript Disabled"');
+ });
+}
+
+function* testJSDisabledIframe() {
+ info("Testing that JS is disabled in the iframe");
+
+ yield ContentTask.spawn(gBrowser.selectedBrowser, {}, function () {
+ let doc = content.document;
+ let iframe = doc.querySelector("iframe");
+ let iframeDoc = iframe.contentDocument;
+ let output = iframeDoc.getElementById("output");
+ iframeDoc.querySelector("#logJSDisabled").click();
+ ok(output.textContent !== "JavaScript Disabled",
+ 'output is not "JavaScript Disabled" in iframe');
+ });
+}
+
+function finishUp(toolbox) {
+ toolbox.destroy().then(function () {
+ gBrowser.removeCurrentTab();
+ finish();
+ });
+}