Index: LayoutTests/fast/workers/storage/resources/test-inputs-common.js |
diff --git a/LayoutTests/fast/workers/storage/resources/test-inputs-common.js b/LayoutTests/fast/workers/storage/resources/test-inputs-common.js |
deleted file mode 100644 |
index 3183b22ef18341f69cf184dafef50de70f5c9e29..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/workers/storage/resources/test-inputs-common.js |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-function log(message) |
-{ |
- document.getElementById("console").innerHTML += message + "<br>"; |
-} |
- |
-function finishTest() |
-{ |
- if (window.testRunner) |
- testRunner.notifyDone(); |
-} |
- |
-function runTest(workerJSFile) |
-{ |
- if (!workerJSFile) { |
- log("FAIL: no JS file specified for the worker."); |
- } |
- |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.waitUntilDone(); |
- } |
- |
- var worker = new Worker(workerJSFile); |
- worker.onmessage = function(event) { |
- if (event.data == "done") |
- finishTest(); |
- else |
- log(event.data); |
- } |
-} |