Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: LayoutTests/fast/workers/storage/resources/transaction-in-transaction-sync.js

Issue 561093003: Remove worker support of Web SQL Database. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");

Powered by Google App Engine
This is Rietveld 408576698