summaryrefslogtreecommitdiffstats
path: root/toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-03-06 12:30:20 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-03-06 12:30:20 +0100
commite25ad543952b5afc13181aaebef9c5951fc27be0 (patch)
tree456a1359b3e5f810319edd423dd5cc5a1e22ada5 /toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html
parent74533a843277c3687c749989ed1522354d1054d2 (diff)
parent5dba1ebe8498286762873fff0016f35f3e14d2d5 (diff)
downloadUXP-2019.03.08.tar
UXP-2019.03.08.tar.gz
UXP-2019.03.08.tar.lz
UXP-2019.03.08.tar.xz
UXP-2019.03.08.zip
Merge branch 'master' into Basilisk-releasev2019.03.08
Diffstat (limited to 'toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html')
-rw-r--r--toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html81
1 files changed, 0 insertions, 81 deletions
diff --git a/toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html b/toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html
deleted file mode 100644
index 97b1645dd..000000000
--- a/toolkit/components/webextensions/test/mochitest/test_ext_contentscript_context.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
- <title>Test for content script contexts</title>
- <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
- <script type="text/javascript" src="/tests/SimpleTest/SpawnTask.js"></script>
- <script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
- <script type="text/javascript" src="head.js"></script>
- <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
-</head>
-<body>
-
-<script type="text/javascript">
-"use strict";
-
-/* eslint-disable mozilla/balanced-listeners */
-
-add_task(function* test_contentscript_context() {
- function contentScript() {
- browser.test.sendMessage("content-script-ready");
-
- window.addEventListener("pagehide", () => {
- browser.test.sendMessage("content-script-hide");
- }, true);
- window.addEventListener("pageshow", () => {
- browser.test.sendMessage("content-script-show");
- });
- }
-
- let extension = ExtensionTestUtils.loadExtension({
- manifest: {
- content_scripts: [{
- "matches": ["http://example.com/"],
- "js": ["content_script.js"],
- "run_at": "document_start",
- }],
- },
-
- files: {
- "content_script.js": contentScript,
- },
- });
-
- yield extension.startup();
-
- let win = window.open("http://example.com/");
- yield extension.awaitMessage("content-script-ready");
- yield extension.awaitMessage("content-script-show");
-
- // Get the content script context and check that it points to the correct window.
-
- let {DocumentManager} = SpecialPowers.Cu.import("resource://gre/modules/ExtensionContent.jsm", {});
- let context = DocumentManager.getContentScriptContext(extension, win);
- ok(context != null, "Got content script context");
-
- is(SpecialPowers.unwrap(context.contentWindow), win, "Context's contentWindow property is correct");
-
- // Navigate so that the content page is hidden in the bfcache.
-
- win.location = "http://example.org/";
- yield extension.awaitMessage("content-script-hide");
-
- is(context.contentWindow, null, "Context's contentWindow property is null");
-
- // Navigate back so the content page is resurrected from the bfcache.
-
- SpecialPowers.wrap(win).history.back();
- yield extension.awaitMessage("content-script-show");
-
- is(SpecialPowers.unwrap(context.contentWindow), win, "Context's contentWindow property is correct");
-
- win.close();
-
- yield extension.awaitMessage("content-script-hide");
-
- yield extension.unload();
-});
-</script>
-
-</body>
-</html>