Index: content/test/data/indexeddb/shutdown_with_requests.html |
diff --git a/content/test/data/indexeddb/shutdown_with_requests.html b/content/test/data/indexeddb/shutdown_with_requests.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1d705cce894cf51fb423131c935da4800e6f9bb2 |
--- /dev/null |
+++ b/content/test/data/indexeddb/shutdown_with_requests.html |
@@ -0,0 +1,36 @@ |
+<!DOCTYPE html> |
+<html> |
+<!-- |
+ Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+ Use of this source code is governed by a BSD-style license that can be |
+ found in the LICENSE file. |
+--> |
+<head> |
+<title>IndexedDB shutdown test</title> |
+<script type="text/javascript" src="common.js"></script> |
+<script> |
+function populate() |
+{ |
+ debug('Populating object store'); |
+ var db = event.target.result; |
+ var store = db.createObjectStore('store'); |
+ for (var i = 0; i < 100; ++i) { |
+ store.put({id: i, rand: Math.random()}, i); |
+ } |
+ // Ensure there is work being done by the back end... |
+ for (var j = 0; j < 10; ++j) { |
+ store.createIndex('idx' + j, 'rand'); |
+ } |
+ // And complete the test, which will exercise IDB vs. V8 shutdown order. |
+ done(); |
+} |
+ |
+function test() { |
+ indexedDBTest(populate); |
+} |
+</script> |
+</head> |
+<body onLoad="test()"> |
+<div id="status">Starting...</div> |
+</body> |
+</html> |