| Index: LayoutTests/http/tests/workers/worker-importScriptsOnError.html
|
| diff --git a/LayoutTests/http/tests/workers/worker-importScriptsOnError.html b/LayoutTests/http/tests/workers/worker-importScriptsOnError.html
|
| deleted file mode 100644
|
| index c516082e53673e5a889799e5e2c215d2fbd61546..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/workers/worker-importScriptsOnError.html
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -<body>
|
| -<p>Test importScripts with error.</p>
|
| -<div id=result></div>
|
| -<script>
|
| -function log(message)
|
| -{
|
| - document.getElementById("result").innerHTML += message + "<br>";
|
| -}
|
| -
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| -}
|
| -
|
| -var worker = new Worker('resources/worker-importScripts-error.js');
|
| -
|
| -worker.onerror = function(error)
|
| -{
|
| - var properties = [];
|
| - for (property in error) {
|
| - if (property == 'timeStamp')
|
| - continue;
|
| - properties.push('<br/>' + property + ': ' + error[property]);
|
| - }
|
| - properties.sort();
|
| - log(properties);
|
| -
|
| - if (window.testRunner) {
|
| - // Allow the console message to be dumped out.
|
| - setTimeout(function() {
|
| - testRunner.notifyDone();
|
| - }, 0);
|
| - }
|
| -}
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|