summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/fetch-later/resources/fetch-later.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/fetch/fetch-later/resources/fetch-later.html')
-rw-r--r--testing/web-platform/tests/fetch/fetch-later/resources/fetch-later.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fetch/fetch-later/resources/fetch-later.html b/testing/web-platform/tests/fetch/fetch-later/resources/fetch-later.html
new file mode 100644
index 0000000000..b569e1a076
--- /dev/null
+++ b/testing/web-platform/tests/fetch/fetch-later/resources/fetch-later.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<head>
+</head>
+<body>
+ <script>
+ const PARAMS = new URL(location.href).searchParams;
+ const TARGET_URL= decodeURIComponent(PARAMS.get('url')) || '';
+
+ fetchLater(TARGET_URL, {activateAfter: 0});
+ if (window.opener) {
+ window.opener.postMessage("done", "*");
+ }
+ </script>
+</body>