Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(461)

Unified Diff: LayoutTests/fast/workers/storage/resources/test-inputs-common.js

Issue 561093003: Remove worker support of Web SQL Database. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698