| Index: third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerUtils/importScripts/003.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerUtils/importScripts/003.html b/third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerUtils/importScripts/003.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7ff30ae2a618b553ca6bda51ca7540ac72b1b44d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerUtils/importScripts/003.html
|
| @@ -0,0 +1,28 @@
|
| +<!--
|
| +var x = 'a';
|
| +try {
|
| + importScripts('data:text/javascript,x+="b"',
|
| + 'data:text/javascript,x+="c"');
|
| +} catch(e) {
|
| + x += "d"
|
| +}
|
| +postMessage(x);
|
| +/*
|
| +-->
|
| +<!doctype html>
|
| +<title>importScripts running scripts</title>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<div id="log"></div>
|
| +<script>
|
| +async_test(function() {
|
| + var worker = new Worker('#');
|
| + worker.onmessage = this.step_func(function(e) {
|
| + assert_equals(e.data, "abc");
|
| + this.done();
|
| + });
|
| +});
|
| +</script>
|
| +<!--
|
| +*/
|
| +//-->
|
|
|