summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/same-site-cookies/resources/iframe-iframe.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/workers/same-site-cookies/resources/iframe-iframe.html')
-rw-r--r--testing/web-platform/tests/workers/same-site-cookies/resources/iframe-iframe.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/web-platform/tests/workers/same-site-cookies/resources/iframe-iframe.html b/testing/web-platform/tests/workers/same-site-cookies/resources/iframe-iframe.html
index 0c5582176d..efd4f3a654 100644
--- a/testing/web-platform/tests/workers/same-site-cookies/resources/iframe-iframe.html
+++ b/testing/web-platform/tests/workers/same-site-cookies/resources/iframe-iframe.html
@@ -4,7 +4,7 @@
<script src="/resources/testdriver-vendor.js"></script>
<body>
<script>
-// Step 3 (workers/same-site-cookies/third-party.{})
+// Step 4 (workers/same-site-cookies/third-party.{})
test_driver.set_test_context(window.top);
const type = (new URLSearchParams(window.location.search)).get("type");
let options = {};
@@ -18,9 +18,9 @@ switch (type) {
options.sameSiteCookies = "none";
break;
}
-// Step 5 (workers/same-site-cookies/third-party.{})
+// Step 7 (workers/same-site-cookies/third-party.{})
try {
- const worker = new SharedWorker("/workers/same-site-cookies/resources/worker.js", options);
+ const worker = new SharedWorker("/workers/same-site-cookies/resources/worker_redirect.py", options);
worker.port.onmessage = (e) => {
window.top.postMessage(e.data, "*");
};