Index: LayoutTests/fast/workers/storage/resources/transaction-in-transaction-sync.js |
diff --git a/LayoutTests/fast/workers/storage/resources/transaction-in-transaction-sync.js b/LayoutTests/fast/workers/storage/resources/transaction-in-transaction-sync.js |
deleted file mode 100644 |
index c61b96d2b5bb2bfe063a85b713bb90b34a948db4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/workers/storage/resources/transaction-in-transaction-sync.js |
+++ /dev/null |
@@ -1,11 +0,0 @@ |
-var db = openDatabaseSync("TransactionInTransactionTest", "1.0", "Test that trying to run a nested transaction fails.", 1); |
-db.transaction(function(tx) { |
- try { |
- db.transaction(function(nestedTx) { }); |
- postMessage("FAIL: Trying to run a nested transaction should throw an exception." + db.lastErrorMessage); |
- } catch (err) { |
- postMessage("PASS: Exception thrown while trying to run a nested transaction (" + db.lastErrorMessage + ")."); |
- } |
-}); |
- |
-postMessage("done"); |