Index: tools/page_cycler/database/insert-transactions/index.html |
diff --git a/tools/page_cycler/database/insert-transactions/index.html b/tools/page_cycler/database/insert-transactions/index.html |
deleted file mode 100644 |
index f17b977ffe6197372af07423d63abc8682c29168..0000000000000000000000000000000000000000 |
--- a/tools/page_cycler/database/insert-transactions/index.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<!DOCTYPE HTML> |
-<html> |
-<title>Insert transactions</title> |
-<script src="../head.js"></script> |
-<script src="../common.js"></script> |
-<script> |
-var randomString = getRandomString(); |
-var idCounter = 0; |
- |
-function transactionCallback(tx) { |
- tx.executeSql('INSERT INTO Test VALUES (?, ?)', |
- [idCounter++, randomString], |
- function(tx, data) {}, function(tx, error) {}); |
-} |
-</script> |
- |
-<body> |
-<script> |
- runPerformanceTest({ |
- dbName: "InsertTransactions", |
- readOnly: false, |
- insertRowsAtSetup: false, |
- transactionCallback: transactionCallback, |
- customRunTransactions: null |
- }); |
-</script> |
-</body> |
-</html> |