From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../WorkerGlobalScope/close/incoming-message.html | 29 +++++++++++++++ .../WorkerGlobalScope/close/sending-messages.html | 27 ++++++++++++++ .../WorkerGlobalScope/close/setInterval.html | 34 +++++++++++++++++ .../WorkerGlobalScope/close/setTimeout.html | 28 ++++++++++++++ .../WorkerGlobalScope/location/helper-redirect.py | 3 ++ .../WorkerGlobalScope/location/members.html | 31 ++++++++++++++++ .../location/post-location-members.js | 8 ++++ .../WorkerGlobalScope/location/redirect.html | 28 ++++++++++++++ .../location/returns-same-object.html | 21 +++++++++++ .../location/setting-members.html | 43 ++++++++++++++++++++++ .../location/worker-separate-file.html | 28 ++++++++++++++ .../onerror/exception-in-onerror.html | 32 ++++++++++++++++ .../WorkerGlobalScope/onerror/handled.html | 36 ++++++++++++++++++ .../WorkerGlobalScope/onerror/not-handled.html | 32 ++++++++++++++++ .../onerror/propagate-to-window-onerror.html | 31 ++++++++++++++++ .../workers/interfaces/WorkerGlobalScope/self.html | 39 ++++++++++++++++++++ 16 files changed, 450 insertions(+) create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/incoming-message.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/sending-messages.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setInterval.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setTimeout.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/helper-redirect.py create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/members.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/post-location-members.js create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/redirect.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/returns-same-object.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/setting-members.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/worker-separate-file.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/exception-in-onerror.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/handled.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/not-handled.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/propagate-to-window-onerror.html create mode 100644 testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/self.html (limited to 'testing/web-platform/tests/workers/interfaces/WorkerGlobalScope') diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/incoming-message.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/incoming-message.html new file mode 100644 index 000000000..d65695632 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/incoming-message.html @@ -0,0 +1,29 @@ + + +close() and incoming message + + +
+ + + + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/sending-messages.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/sending-messages.html new file mode 100644 index 000000000..983c422cc --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/sending-messages.html @@ -0,0 +1,27 @@ + + +close() and sending messages + + +
+ + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setInterval.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setInterval.html new file mode 100644 index 000000000..1d7d178d2 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setInterval.html @@ -0,0 +1,34 @@ + + +close() and setInterval + + +
+ + + + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setTimeout.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setTimeout.html new file mode 100644 index 000000000..c2fa10dfc --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/setTimeout.html @@ -0,0 +1,28 @@ + + +close() and setTimeout + + +
+ + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/helper-redirect.py b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/helper-redirect.py new file mode 100644 index 000000000..eb1599a57 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/helper-redirect.py @@ -0,0 +1,3 @@ +def main(request, response): + response.status = 302 + response.headers.append("Location", "post-location-members.js?a") diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/members.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/members.html new file mode 100644 index 000000000..31ddf37a1 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/members.html @@ -0,0 +1,31 @@ + + +members of WorkerLocation + + +
+ + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/post-location-members.js b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/post-location-members.js new file mode 100644 index 000000000..e850b76b6 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/post-location-members.js @@ -0,0 +1,8 @@ +postMessage([location.href, + location.protocol, + location.host, + location.hostname, + location.port, + location.pathname, + location.search, + location.hash]); \ No newline at end of file diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/redirect.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/redirect.html new file mode 100644 index 000000000..2fd16a4c1 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/redirect.html @@ -0,0 +1,28 @@ + + +location with a worker in separate file that redirects + + +
+ + + + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/returns-same-object.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/returns-same-object.html new file mode 100644 index 000000000..40559c166 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/returns-same-object.html @@ -0,0 +1,21 @@ + + +location === location + + +
+ + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/setting-members.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/setting-members.html new file mode 100644 index 000000000..d2f470ffc --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/setting-members.html @@ -0,0 +1,43 @@ + + +setting members of WorkerLocation + + +
+ + + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/worker-separate-file.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/worker-separate-file.html new file mode 100644 index 000000000..ac8e64dcc --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/location/worker-separate-file.html @@ -0,0 +1,28 @@ + + +location with a worker in separate file + + +
+ + + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/exception-in-onerror.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/exception-in-onerror.html new file mode 100644 index 000000000..4b5af71d5 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/exception-in-onerror.html @@ -0,0 +1,32 @@ + + +onerror, "not handled" with an error in the onerror function + + +
+ + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/handled.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/handled.html new file mode 100644 index 000000000..56fee8e06 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/handled.html @@ -0,0 +1,36 @@ + + +onerror, "handled" + + +
+ + \ No newline at end of file diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/not-handled.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/not-handled.html new file mode 100644 index 000000000..f6107ada4 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/not-handled.html @@ -0,0 +1,32 @@ + + +onerror, "not handled" + + +
+ + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/propagate-to-window-onerror.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/propagate-to-window-onerror.html new file mode 100644 index 000000000..b6a61e235 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/onerror/propagate-to-window-onerror.html @@ -0,0 +1,31 @@ + + +onerror, "not handled" with only window.onerror defined + + +
+ + diff --git a/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/self.html b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/self.html new file mode 100644 index 000000000..39c2c36c0 --- /dev/null +++ b/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/self.html @@ -0,0 +1,39 @@ + + +self + + +
+ + \ No newline at end of file -- cgit v1.2.3