| for (var i = 0; i < 10000; ++i) { |
| // Variable for the database that will never be forgotten |
| // Variable for the forgotten database |
| function checkCompletion() |
| if (++completed == 2 && window.layoutTestController) |
| layoutTestController.notifyDone(); |
| persistentDB = openDatabaseWithSuffix("MultipleDatabasesTest1", "1.0", "Test one out of a set of databases being destroyed (1)", 32768); |
| forgottenDB = openDatabaseWithSuffix("MultipleDatabasesTest2", "1.0", "Test one out of a set of databases being destroyed (2)", 32768); |
| persistentDB.transaction(function(tx) { |
| tx.executeSql("CREATE TABLE IF NOT EXISTS DataTest (randomData)", [], function(tx, result) { |
| for (var i = 0; i < 25; ++i) |
| tx.executeSql("INSERT INTO DataTest (randomData) VALUES (1)", []); |
| log("Persistent Database Transaction Errored - " + err); |
| log("Persistent Database Transaction Complete"); |
| forgottenDB.transaction(function(tx) { |
| tx.executeSql("CREATE TABLE IF NOT EXISTS EmptyTable (unimportantData)", []); |
| log("Forgotten Database Transaction Errored - " + err); |
| log("Forgotten Database Transaction Complete"); |