Index: LayoutTests/fast/workers/storage/resources/multiple-transactions-sync.js |
diff --git a/LayoutTests/fast/workers/storage/resources/multiple-transactions-sync.js b/LayoutTests/fast/workers/storage/resources/multiple-transactions-sync.js |
deleted file mode 100644 |
index 2feb3ad2c2f4fc3424cf5a2b338773ca9efc5e35..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/workers/storage/resources/multiple-transactions-sync.js |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-var complete = 0; |
- |
-function checkCompletion() |
-{ |
- if (++complete == 2 && window.testRunner) |
- testRunner.notifyDone(); |
-} |
- |
-function runTest() |
-{ |
- var db = openDatabaseWithSuffix("MultipleTransactionsTest", "1.0", "Test to make sure multiple transactions can be queued at once for an HTML5 database", 32768); |
- |
- db.transaction(function(tx) { |
- log("Transaction 1 Started"); |
- }, function(err) { |
- log("Transaction 1 Errored - " + err); |
- checkCompletion(); |
- }, function() { |
- log("Transaction 1 Succeeded"); |
- checkCompletion(); |
- }); |
- |
- db.transaction(function(tx) { |
- log("Transaction 2 Started"); |
- }, function(err) { |
- log("Transaction 2 Errored - " + err); |
- checkCompletion(); |
- }, function() { |
- log("Transaction 2 Succeeded"); |
- checkCompletion(); |
- }); |
-} |