summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/origins/resources
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/widgets/origins/resources')
-rw-r--r--tests/auto/widgets/origins/resources/createObjectURL.html11
-rw-r--r--tests/auto/widgets/origins/resources/dedicatedWorker.html19
-rw-r--r--tests/auto/widgets/origins/resources/dedicatedWorker.js1
-rw-r--r--tests/auto/widgets/origins/resources/mixedSchemes.html31
-rw-r--r--tests/auto/widgets/origins/resources/mixedSchemesWithCsp.html32
-rw-r--r--tests/auto/widgets/origins/resources/mixedSchemes_frame.html11
-rw-r--r--tests/auto/widgets/origins/resources/mixedXHR.html19
-rw-r--r--tests/auto/widgets/origins/resources/mixedXHR.txt1
-rw-r--r--tests/auto/widgets/origins/resources/redirect.css8
-rw-r--r--tests/auto/widgets/origins/resources/redirect.html10
-rw-r--r--tests/auto/widgets/origins/resources/serviceWorker.html18
-rw-r--r--tests/auto/widgets/origins/resources/serviceWorker.js1
-rw-r--r--tests/auto/widgets/origins/resources/sharedWorker.html19
-rw-r--r--tests/auto/widgets/origins/resources/sharedWorker.js6
-rw-r--r--tests/auto/widgets/origins/resources/subdir/frame2.html10
-rw-r--r--tests/auto/widgets/origins/resources/subdir/index.html26
-rw-r--r--tests/auto/widgets/origins/resources/subdir_frame1.html10
-rw-r--r--tests/auto/widgets/origins/resources/viewSource.html9
-rw-r--r--tests/auto/widgets/origins/resources/websocket.html23
19 files changed, 0 insertions, 265 deletions
diff --git a/tests/auto/widgets/origins/resources/createObjectURL.html b/tests/auto/widgets/origins/resources/createObjectURL.html
deleted file mode 100644
index 133f636bb..000000000
--- a/tests/auto/widgets/origins/resources/createObjectURL.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>createObjectURL</title>
- <script>
- const blob = new Blob(['foo']);
- const result = URL.createObjectURL(blob);
- </script>
- </head>
- <body></body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/dedicatedWorker.html b/tests/auto/widgets/origins/resources/dedicatedWorker.html
deleted file mode 100644
index cb4f14e73..000000000
--- a/tests/auto/widgets/origins/resources/dedicatedWorker.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>dedicatedWorker</title>
- <script>
- var done = false;
- var result;
- var error;
- try {
- let worker = new Worker("dedicatedWorker.js");
- worker.onmessage = (e) => { done = true; result = e.data; };
- worker.postMessage(41);
- } catch (e) {
- done = true; error = e.message;
- }
- </script>
- </head>
- <body></body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/dedicatedWorker.js b/tests/auto/widgets/origins/resources/dedicatedWorker.js
deleted file mode 100644
index 2631939d7..000000000
--- a/tests/auto/widgets/origins/resources/dedicatedWorker.js
+++ /dev/null
@@ -1 +0,0 @@
-onmessage = (e) => { postMessage(e.data + 1); };
diff --git a/tests/auto/widgets/origins/resources/mixedSchemes.html b/tests/auto/widgets/origins/resources/mixedSchemes.html
deleted file mode 100644
index c73e9ecdc..000000000
--- a/tests/auto/widgets/origins/resources/mixedSchemes.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Mixed</title>
- <script>
- var result;
- var canary;
-
- function setIFrameUrl(url) {
- result = undefined;
- canary = undefined;
- document.getElementById("iframe").setAttribute("src", url);
- // Early fire is OK unless the test is expecting cannotLoad.
- // If timeout is too short then a false positive is possible.
- setTimeout(() => { result = result || "cannotLoad"; }, 500);
- }
-
- addEventListener("load", function() {
- document.getElementById("iframe").addEventListener("load", function() {
- if (canary && window[0].canary)
- result = "canLoadAndAccess";
- else
- result = "canLoadButNotAccess";
- });
- });
- </script>
- </head>
- <body>
- <iframe id="iframe"></iframe>
- </body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/mixedSchemesWithCsp.html b/tests/auto/widgets/origins/resources/mixedSchemesWithCsp.html
deleted file mode 100644
index ad7cbeeb7..000000000
--- a/tests/auto/widgets/origins/resources/mixedSchemesWithCsp.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta http-equiv="Content-Security-Policy" content="frame-src 'none'">
- <title>Mixed</title>
- <script>
- var result;
- var canary;
-
- function setIFrameUrl(url) {
- result = undefined;
- canary = undefined;
- document.getElementById("iframe").setAttribute("src", url);
- // Early fire is OK unless the test is expecting cannotLoad.
- // If timeout is too short then a false positive is possible.
- setTimeout(() => { result = result || "cannotLoad"; }, 500);
- }
-
- addEventListener("load", function() {
- document.getElementById("iframe").addEventListener("load", function() {
- if (canary && window[0].canary)
- result = "canLoadAndAccess";
- else
- result = "canLoadButNotAccess";
- });
- });
- </script>
- </head>
- <body>
- <iframe id="iframe"></iframe>
- </body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/mixedSchemes_frame.html b/tests/auto/widgets/origins/resources/mixedSchemes_frame.html
deleted file mode 100644
index 00c20ba37..000000000
--- a/tests/auto/widgets/origins/resources/mixedSchemes_frame.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Mixed - Frame</title>
- <script>
- var canary = true;
- parent.canary = true;
- </script>
- </head>
- <body></body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/mixedXHR.html b/tests/auto/widgets/origins/resources/mixedXHR.html
deleted file mode 100644
index 3dfd90006..000000000
--- a/tests/auto/widgets/origins/resources/mixedXHR.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Mixed</title>
- <script>
- var result;
- function sendXHR(url) {
- result = undefined;
- let req = new XMLHttpRequest();
- req.addEventListener("load", () => { result = req.responseText });
- req.addEventListener("error", () => { result = "error"; });
- req.open("GET", url);
- req.send();
- }
- </script>
- </head>
- <body>
- </body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/mixedXHR.txt b/tests/auto/widgets/origins/resources/mixedXHR.txt
deleted file mode 100644
index b5754e203..000000000
--- a/tests/auto/widgets/origins/resources/mixedXHR.txt
+++ /dev/null
@@ -1 +0,0 @@
-ok \ No newline at end of file
diff --git a/tests/auto/widgets/origins/resources/redirect.css b/tests/auto/widgets/origins/resources/redirect.css
deleted file mode 100644
index 41d7560cc..000000000
--- a/tests/auto/widgets/origins/resources/redirect.css
+++ /dev/null
@@ -1,8 +0,0 @@
-@font-face {
- font-family: 'MyWebFont';
- src: url('redirect1:/resources/Akronim-Regular.woff2') format('woff2');
-}
-
-body {
- font-family: 'MyWebFont', Fallback, sans-serif;
-}
diff --git a/tests/auto/widgets/origins/resources/redirect.html b/tests/auto/widgets/origins/resources/redirect.html
deleted file mode 100644
index 04948e14b..000000000
--- a/tests/auto/widgets/origins/resources/redirect.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>redirect</title>
- <link rel="stylesheet" href="redirect1:/resources/redirect.css">
- </head>
- <body>
- Text
- </body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/serviceWorker.html b/tests/auto/widgets/origins/resources/serviceWorker.html
deleted file mode 100644
index 27890c98f..000000000
--- a/tests/auto/widgets/origins/resources/serviceWorker.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>serviceWorker</title>
- <script>
- var done = false;
- var error;
- try {
- navigator.serviceWorker.register("serviceWorker.js")
- .then((r) => { done = true; })
- .catch((e) => { done = true; error = e.message; });
- } catch (e) {
- done = true; error = e.message;
- }
- </script>
- </head>
- <body></body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/serviceWorker.js b/tests/auto/widgets/origins/resources/serviceWorker.js
deleted file mode 100644
index 40a8c178f..000000000
--- a/tests/auto/widgets/origins/resources/serviceWorker.js
+++ /dev/null
@@ -1 +0,0 @@
-/* empty */
diff --git a/tests/auto/widgets/origins/resources/sharedWorker.html b/tests/auto/widgets/origins/resources/sharedWorker.html
deleted file mode 100644
index 8b5a0a794..000000000
--- a/tests/auto/widgets/origins/resources/sharedWorker.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>sharedWorker</title>
- <script>
- var done;
- var result;
- var error;
- try {
- let worker = new SharedWorker("sharedWorker.js");
- worker.port.onmessage = (e) => { done = true; result = e.data; };
- worker.port.postMessage(41);
- } catch (e) {
- done = true; error = e.message;
- }
- </script>
- </head>
- <body></body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/sharedWorker.js b/tests/auto/widgets/origins/resources/sharedWorker.js
deleted file mode 100644
index 60ef93a5f..000000000
--- a/tests/auto/widgets/origins/resources/sharedWorker.js
+++ /dev/null
@@ -1,6 +0,0 @@
-onconnect = function(e) {
- let port = e.ports[0];
- port.onmessage = function(e) {
- port.postMessage(e.data + 1);
- };
-};
diff --git a/tests/auto/widgets/origins/resources/subdir/frame2.html b/tests/auto/widgets/origins/resources/subdir/frame2.html
deleted file mode 100644
index 3a2f664ca..000000000
--- a/tests/auto/widgets/origins/resources/subdir/frame2.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Subdir - Frame 2</title>
- <script>
- parent.msg[1] = "world";
- </script>
- </head>
- <body></body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/subdir/index.html b/tests/auto/widgets/origins/resources/subdir/index.html
deleted file mode 100644
index 9c5d5d782..000000000
--- a/tests/auto/widgets/origins/resources/subdir/index.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Subdir</title>
-
- <script>
- var msg = [];
- </script>
-
- <!-- for manual testing -->
- <script>
- window.addEventListener("load", () => {
- for (let i of [0, 1]) {
- let p = document.createElement("p");
- p.appendChild(document.createTextNode(`frame ${i+1} says: ${msg[i]}`));
- document.body.insertBefore(p, null);
- }
- });
- </script>
-
- </head>
- <body>
- <iframe src="../subdir_frame1.html"></iframe>
- <iframe src="frame2.html"></iframe>
- </body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/subdir_frame1.html b/tests/auto/widgets/origins/resources/subdir_frame1.html
deleted file mode 100644
index 63973f2f4..000000000
--- a/tests/auto/widgets/origins/resources/subdir_frame1.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Subdir - Frame 1</title>
- <script>
- parent.msg[0] = "hello";
- </script>
- </head>
- <body></body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/viewSource.html b/tests/auto/widgets/origins/resources/viewSource.html
deleted file mode 100644
index 977074c74..000000000
--- a/tests/auto/widgets/origins/resources/viewSource.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>viewSource</title>
- </head>
- <body>
- <p>viewSource</p>
- </body>
-</html>
diff --git a/tests/auto/widgets/origins/resources/websocket.html b/tests/auto/widgets/origins/resources/websocket.html
deleted file mode 100644
index 31db66571..000000000
--- a/tests/auto/widgets/origins/resources/websocket.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>WebSocket</title>
- <script src="qrc:/qtwebchannel/qwebchannel.js"></script>
- <script>
- var result;
- new QWebChannel(qt.webChannelTransport, channel => {
- const ws = new WebSocket(channel.objects.echoServer.url);
- ws.addEventListener("open", event => {
- ws.send("ok");
- });
- ws.addEventListener("message", event => {
- result = event.data;
- });
- ws.addEventListener("close", event => {
- result = event.code;
- });
- })
- </script>
- </head>
- <body></body>
-</html>