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

Unified Diff: content/test/data/indexeddb/shutdown_with_requests.html

Issue 58113002: Tear down IndexedDB dispatcher before WebKit is torn down (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698