| Index: tools/page_cycler/database/update-transactions/index.html
|
| diff --git a/tools/page_cycler/database/update-transactions/index.html b/tools/page_cycler/database/update-transactions/index.html
|
| deleted file mode 100644
|
| index 75d3c570cca18eb6699deccac8d62e6dbba3d8a4..0000000000000000000000000000000000000000
|
| --- a/tools/page_cycler/database/update-transactions/index.html
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -<!DOCTYPE HTML>
|
| -<html>
|
| -<title>Update transactions</title>
|
| -<script src="../head.js"></script>
|
| -<script src="../common.js"></script>
|
| -<script>
|
| -var randomString = getRandomString();
|
| -var idCounter = 0;
|
| -
|
| -function transactionCallback(tx) {
|
| - tx.executeSql('UPDATE Test SET Foo = ? WHERE ID = ?',
|
| - [randomString, idCounter++],
|
| - function(tx, data) {}, function(tx, error) {});
|
| -}
|
| -</script>
|
| -
|
| -<body>
|
| -<script>
|
| - runPerformanceTest({
|
| - dbName: "UpdateTransactions",
|
| - readOnly: false,
|
| - insertRowsAtSetup: true,
|
| - transactionCallback: transactionCallback,
|
| - customRunTransactions: null
|
| - });
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|