| Index: third_party/WebKit/LayoutTests/imported/wpt/workers/baseurl/alpha/worker.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/workers/baseurl/alpha/worker.html b/third_party/WebKit/LayoutTests/imported/wpt/workers/baseurl/alpha/worker.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..284425ed3407735c8072753d1299ff2c38da1a47
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/workers/baseurl/alpha/worker.html
|
| @@ -0,0 +1,14 @@
|
| +<!doctype html>
|
| +<meta charset=utf-8>
|
| +<title>Base URL in workers: new Worker()</title>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script>
|
| +async_test(function() {
|
| + var worker = new Worker("../beta/worker.py");
|
| + worker.onmessage = this.step_func_done(function(e) {
|
| + assert_equals(e.data, "gamma");
|
| + });
|
| + worker.onerror = this.unreached_func("Got error event");
|
| +});
|
| +</script>
|
|
|