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

Side by Side Diff: chrome/test/data/indexeddb/database_callbacks_first.html

Issue 6677034: Add IndexedDB browser test that causes a crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove DISABLED marker on this new test Created 9 years, 9 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <script>
2 webkitIndexedDB.open().onsuccess = function () {
3 setTimeout(function() {
Paweł Hajdan Jr. 2011/03/15 19:49:11 Is setTimeout really needed here? If yes, could yo
jorlow 2011/03/15 20:25:46 The gc is...and it makes it more deterministic, so
dgrogan 2011/03/15 20:49:07 Yeah, I'll comment these. I think setTimeout make
Paweł Hajdan Jr. 2011/03/16 14:53:09 I still consider even setTimeout with 0 somewhat p
dgrogan 2011/03/16 22:00:12 I don't know if you're right or wrong, but I think
4 gc();
5 location.href = 'database_callbacks_second.html';
6 });
7 }
8 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698