| Index: LayoutTests/fast/workers/storage/change-version-sync.html
|
| diff --git a/LayoutTests/fast/workers/storage/change-version-sync.html b/LayoutTests/fast/workers/storage/change-version-sync.html
|
| deleted file mode 100644
|
| index f7cc02eea6e4d0f22aecdac583249d99b1e5cd28..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/workers/storage/change-version-sync.html
|
| +++ /dev/null
|
| @@ -1,49 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script>
|
| -function log(message)
|
| -{
|
| - document.getElementById("console").innerHTML += message + "<br>";
|
| -}
|
| -
|
| -function finishTest()
|
| -{
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| -}
|
| -
|
| -function runTest()
|
| -{
|
| - if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| - }
|
| -
|
| - if (window.location.search == "?2") {
|
| - var worker = new Worker("resources/change-version-sync-2.js");
|
| - worker.onmessage = function(event) {
|
| - if (event.data == "done")
|
| - finishTest();
|
| - else
|
| - log(event.data);
|
| - };
|
| - } else {
|
| - var worker = new Worker("resources/change-version-sync-1.js");
|
| - worker.onmessage = function(event) {
|
| - if (event.data == "done")
|
| - window.location.href = window.location + "?2";
|
| - else if (event.data == "fail")
|
| - finishTest();
|
| - else
|
| - log(event.data);
|
| - };
|
| - }
|
| -}
|
| -</script>
|
| -</head>
|
| -<body onload="runTest()">
|
| -Test that version updates in sync databases work correctly.
|
| -<pre id="console">
|
| -</pre>
|
| -</body>
|
| -</html>
|
|
|