diff --git a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html
deleted file mode 100644
index 0d559999f3faf8..00000000000000
--- a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
[[CanBlock]] in a dedicated worker agent
-
-
-
-
-
-
-
diff --git a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html
deleted file mode 100644
index 6bfd29e8c74b50..00000000000000
--- a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-[[CanBlock]] in a service worker agent
-
-
-
-
-
-
-
-
diff --git a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html
deleted file mode 100644
index beb7c6467b2417..00000000000000
--- a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[[CanBlock]] in a shared worker agent
-
-
-
-
-
-
-
diff --git a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-window.html b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-window.html
deleted file mode 100644
index 369ce77b0b62af..00000000000000
--- a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-window.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-[[CanBlock]] in a similar-origin window agent
-
-
-
-
-
-
-
diff --git a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/worker-that-requires-failure.js b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-failure.https.any.js
similarity index 76%
rename from html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/worker-that-requires-failure.js
rename to html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-failure.https.any.js
index 586c8ba3876465..a890b350198253 100644
--- a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/worker-that-requires-failure.js
+++ b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-failure.https.any.js
@@ -1,5 +1,4 @@
-"use strict";
-importScripts("/resources/testharness.js");
+// META: global=!default,window,serviceworker
test(() => {
const sab = new SharedArrayBuffer(16);
@@ -9,5 +8,3 @@ test(() => {
Atomics.wait(ta, 0, 0, 10);
});
}, `[[CanBlock]] in a ${self.constructor.name}`);
-
-done();
diff --git a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/worker-that-requires-success.js b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-success.any.js
similarity index 74%
rename from html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/worker-that-requires-success.js
rename to html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-success.any.js
index 2ed54143ee5572..290b44353c8ac5 100644
--- a/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/worker-that-requires-success.js
+++ b/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/requires-success.any.js
@@ -1,5 +1,4 @@
-"use strict";
-importScripts("/resources/testharness.js");
+// META: global=!default,dedicatedworker,sharedworker
test(() => {
const sab = new SharedArrayBuffer(16);
@@ -7,5 +6,3 @@ test(() => {
assert_equals(Atomics.wait(ta, 0, 0, 10), "timed-out");
}, `[[CanBlock]] in a ${self.constructor.name}`);
-
-done();