summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/origins/resources/fetchApi.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/core/origins/resources/fetchApi.html')
-rw-r--r--tests/auto/core/origins/resources/fetchApi.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/core/origins/resources/fetchApi.html b/tests/auto/core/origins/resources/fetchApi.html
new file mode 100644
index 000000000..7b54416fd
--- /dev/null
+++ b/tests/auto/core/origins/resources/fetchApi.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<html>
+<body>
+ <script type="text/javascript">
+ const queryString = window.location.search;
+ const urlParams = new URLSearchParams(queryString);
+ const url = urlParams.get('url');
+ const f = fetch(url);
+ if (urlParams.get('printRes') == 'true') {
+ f.then((r) => r.text()).then((p) => console.log(p));
+ }
+ </script>
+</body>
+</html>