XMLHttpRequest: remove some unneeded boilerplate resources
diff --git a/xhr/abort-during-open.js b/xhr/abort-during-open.any.js
similarity index 88%
rename from xhr/abort-during-open.js
rename to xhr/abort-during-open.any.js
index 26d3f57..42a1bce 100644
--- a/xhr/abort-during-open.js
+++ b/xhr/abort-during-open.any.js
@@ -1,4 +1,4 @@
-var test = async_test()
+var test = async_test("XMLHttpRequest: abort() during OPEN");
 test.step(function() {
   var client = new XMLHttpRequest()
   client.open("GET", "...")
diff --git a/xhr/abort-during-open.htm b/xhr/abort-during-open.htm
deleted file mode 100644
index dde94f2..0000000
--- a/xhr/abort-during-open.htm
+++ /dev/null
@@ -1,14 +0,0 @@
-<!doctype html>
-<html>
-  <head>
-    <title>XMLHttpRequest: abort() during OPEN</title>
-    <script src="/resources/testharness.js"></script>
-    <script src="/resources/testharnessreport.js"></script>
-    <link rel="help" href="https://xhr.spec.whatwg.org/#the-abort()-method" data-tested-assertations="following-sibling::ol/li[4] following-sibling::ol/li[5]" />
-    <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following-sibling::ol/li[1]" />
-  </head>
-  <body>
-    <div id="log"></div>
-    <script src="abort-during-open.js"></script>
-  </body>
-</html>
diff --git a/xhr/abort-during-open.worker.js b/xhr/abort-during-open.worker.js
deleted file mode 100644
index ffb687d..0000000
--- a/xhr/abort-during-open.worker.js
+++ /dev/null
@@ -1,3 +0,0 @@
-importScripts("/resources/testharness.js");
-importScripts("abort-during-open.js");
-done();
diff --git a/xhr/send-send.js b/xhr/send-send.any.js
similarity index 84%
rename from xhr/send-send.js
rename to xhr/send-send.any.js
index 2e7fe86..2bfe404 100644
--- a/xhr/send-send.js
+++ b/xhr/send-send.any.js
@@ -4,4 +4,4 @@
   client.send(null)
   assert_throws("InvalidStateError", function() { client.send(null) })
   client.abort()
-})
+}, "XMLHttpRequest: send() - send()");
diff --git a/xhr/send-send.htm b/xhr/send-send.htm
deleted file mode 100644
index cbcbdb4..0000000
--- a/xhr/send-send.htm
+++ /dev/null
@@ -1,13 +0,0 @@
-<!doctype html>
-<html>
-  <head>
-    <title>XMLHttpRequest: send() - send()</title>
-    <script src="/resources/testharness.js"></script>
-    <script src="/resources/testharnessreport.js"></script>
-    <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::ol/li[2]" />
-  </head>
-  <body>
-    <div id="log"></div>
-    <script src="send-send.js"></script>
-  </body>
-</html>
diff --git a/xhr/send-send.worker.js b/xhr/send-send.worker.js
deleted file mode 100644
index 9d34ce6..0000000
--- a/xhr/send-send.worker.js
+++ /dev/null
@@ -1,3 +0,0 @@
-importScripts("/resources/testharness.js");
-importScripts("send-send.js");
-done();