summaryrefslogtreecommitdiffstats
path: root/addon-sdk/source/test/addons/e10s-content/data
diff options
context:
space:
mode:
Diffstat (limited to 'addon-sdk/source/test/addons/e10s-content/data')
-rw-r--r--addon-sdk/source/test/addons/e10s-content/data/test-contentScriptFile.js5
-rw-r--r--addon-sdk/source/test/addons/e10s-content/data/test-page-worker.html13
-rw-r--r--addon-sdk/source/test/addons/e10s-content/data/test-page-worker.js29
-rw-r--r--addon-sdk/source/test/addons/e10s-content/data/test.html13
4 files changed, 0 insertions, 60 deletions
diff --git a/addon-sdk/source/test/addons/e10s-content/data/test-contentScriptFile.js b/addon-sdk/source/test/addons/e10s-content/data/test-contentScriptFile.js
deleted file mode 100644
index 7dc0e3f24..000000000
--- a/addon-sdk/source/test/addons/e10s-content/data/test-contentScriptFile.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/* 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/. */
-
-self.postMessage("msg from contentScriptFile");
diff --git a/addon-sdk/source/test/addons/e10s-content/data/test-page-worker.html b/addon-sdk/source/test/addons/e10s-content/data/test-page-worker.html
deleted file mode 100644
index 85264034a..000000000
--- a/addon-sdk/source/test/addons/e10s-content/data/test-page-worker.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!-- 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/. -->
-
-<html>
-<head>
- <meta charset="UTF-8">
- <title>Page Worker test</title>
-</head>
-<body>
- <p id="paragraph">Lorem ipsum dolor sit amet.</p>
-</body>
-</html>
diff --git a/addon-sdk/source/test/addons/e10s-content/data/test-page-worker.js b/addon-sdk/source/test/addons/e10s-content/data/test-page-worker.js
deleted file mode 100644
index 5114fe4e0..000000000
--- a/addon-sdk/source/test/addons/e10s-content/data/test-page-worker.js
+++ /dev/null
@@ -1,29 +0,0 @@
-/* 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/. */
-
-
-// get title directly
-self.postMessage(["equal", document.title, "Page Worker test",
- "Correct page title accessed directly"]);
-
-// get <p> directly
-var p = document.getElementById("paragraph");
-self.postMessage(["ok", !!p, "<p> can be accessed directly"]);
-self.postMessage(["equal", p.firstChild.nodeValue,
- "Lorem ipsum dolor sit amet.",
- "Correct text node expected"]);
-
-// Modify page
-var div = document.createElement("div");
-div.setAttribute("id", "block");
-div.appendChild(document.createTextNode("Test text created"));
-document.body.appendChild(div);
-
-// Check back the modification
-div = document.getElementById("block");
-self.postMessage(["ok", !!div, "<div> can be accessed directly"]);
-self.postMessage(["equal", div.firstChild.nodeValue,
- "Test text created", "Correct text node expected"]);
-self.postMessage(["done"]);
-
diff --git a/addon-sdk/source/test/addons/e10s-content/data/test.html b/addon-sdk/source/test/addons/e10s-content/data/test.html
deleted file mode 100644
index 181e85f9b..000000000
--- a/addon-sdk/source/test/addons/e10s-content/data/test.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!-- 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/. -->
-
-<html>
- <head>
- <meta charset="UTF-8">
- <title>foo</title>
- </head>
- <body>
- <p>bar</p>
- </body>
-</html>