Index: LayoutTests/storage/execute-sql-args-worker.html |
=================================================================== |
--- LayoutTests/storage/execute-sql-args-worker.html (revision 0) |
+++ LayoutTests/storage/execute-sql-args-worker.html (revision 0) |
@@ -0,0 +1,24 @@ |
+<html> |
+<head> |
+<script src="resources/database-worker-controller.js"></script> |
+<script> |
+ |
+function setupAndRunTest() |
+{ |
+ if (window.layoutTestController) { |
+ layoutTestController.clearAllDatabases(); |
+ layoutTestController.dumpAsText(); |
+ layoutTestController.waitUntilDone(); |
+ } |
+ databaseWorker.postMessage("importScripts:execute-sql-args.js"); |
+ databaseWorker.postMessage("runTest"); |
+} |
+ |
+</script> |
+</head> |
+ |
+<body onload="setupAndRunTest()"> |
+<pre id="console"></pre> |
+</body> |
+ |
+</html> |