summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/origins/resources/mixedXHR.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/widgets/origins/resources/mixedXHR.html')
-rw-r--r--tests/auto/widgets/origins/resources/mixedXHR.html19
1 files changed, 0 insertions, 19 deletions
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>