Bug 1615593 [wpt PR 21801] - Revert "Worker: Add data URL tests for nested dedicated workers", a=testonly

Automatic update from web-platform-tests
Revert "Worker: Add data URL tests for nested dedicated workers"

This reverts commit 1d73a2eb29cb7088b4920cf8958b6b3d053b093a.

Reason for revert: Worker variant of tests appears to consistently timeout on WebKit Linux Leak (crbug.com/1052322)

Original change's description:
> Worker: Add data URL tests for nested dedicated workers
>
> This CL renames data-url.html to data-url.any.js in order to run the
> tests on a dedicated worker. Previously these tests only ran on window.
>
> Bug: n/a
> Change-Id: I4be0cfdddc01fa4865763868c4947ea63e62d491
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2054656
> Reviewed-by: Makoto Shimazu <shimazu@chromium.org>
> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#741367}

TBR=nhiroki@chromium.org,shimazu@chromium.org

Change-Id: I00481f9a51c672b4041364674d0bcad00d959c63
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: n/a
Bug: 1052322
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2057046
Reviewed-by: Stephen McGruer <smcgruer@chromium.org>
Commit-Queue: Stephen McGruer <smcgruer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#741417}

--

wpt-commits: a36ca8f94aed6644abaab1553dd634f3f5251a5d
wpt-pr: 21801
This commit is contained in:
Stephen McGruer 2020-02-17 17:01:56 +00:00 committed by moz-wptsync-bot
parent ec2b1a0e72
commit 652fa7eb6d

View File

@ -1,5 +1,8 @@
// META: title=data URL dedicated workers
<!DOCTYPE html>
<title>data URL dedicated workers</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
// Helper assert functions -START-
function assert_worker_sends_pass(test_desc, mime_type, worker_code) {
async_test(function(t) {
@ -61,3 +64,4 @@ setup({allow_uncaught_exception:true});
assert_worker_construction_fails('invalid javascript produces error', 'application/javascript', '}x=3');
// Actual tests -END-
</script>