Index: LayoutTests/fast/workers/storage/resources/interrupt-database-sync.js |
diff --git a/LayoutTests/fast/workers/storage/resources/interrupt-database-sync.js b/LayoutTests/fast/workers/storage/resources/interrupt-database-sync.js |
deleted file mode 100644 |
index e533f08b708997e074ac573820843b6ccb6fdb94..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/workers/storage/resources/interrupt-database-sync.js |
+++ /dev/null |
@@ -1,11 +0,0 @@ |
-var db = openDatabaseSync("InterruptDatabaseSyncTest", "1", "", 1); |
-db.transaction(function(tx) { |
- tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo INT)"); |
- var counter = 0; |
- while (true) { |
- // Put both statements on the same line, to make sure the exception is always reported on the same line. |
- tx.executeSql("INSERT INTO Test VALUES (1)"); tx.executeSql("DELETE FROM Test WHERE Foo = 1"); |
- if (++counter == 100) |
- postMessage("terminate"); |
- } |
-}); |