OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script src="resources/database-worker-controller.js"></script> |
| 4 <script> |
| 5 |
| 6 function setupAndRunTest() |
| 7 { |
| 8 if (window.layoutTestController) { |
| 9 layoutTestController.clearAllDatabases(); |
| 10 layoutTestController.dumpAsText(); |
| 11 layoutTestController.waitUntilDone(); |
| 12 } |
| 13 databaseWorker.postMessage("importScripts:execute-sql-args.js"); |
| 14 databaseWorker.postMessage("runTest"); |
| 15 } |
| 16 |
| 17 </script> |
| 18 </head> |
| 19 |
| 20 <body onload="setupAndRunTest()"> |
| 21 <pre id="console"></pre> |
| 22 </body> |
| 23 |
| 24 </html> |
OLD | NEW |