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

Unified Diff: chrome/test/data/indexeddb/common.js

Issue 8662017: IndexedDB: Cursor pre-fetching. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tighten the browser test a little Created 9 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
Index: chrome/test/data/indexeddb/common.js
diff --git a/chrome/test/data/indexeddb/common.js b/chrome/test/data/indexeddb/common.js
index 5470fec612d574ef6ef0e143fb8384b7e213875b..6983d79242c572f6e3f83e089df9242b1719d07a 100644
--- a/chrome/test/data/indexeddb/common.js
+++ b/chrome/test/data/indexeddb/common.js
@@ -4,7 +4,9 @@
function debug(message)
{
- document.getElementById('status').innerHTML += '<br/>' + message;
+ var span = document.createElement("span");
+ document.getElementById('status').appendChild(span);
+ span.innerHTML = message + '<br />';
jsbell 2011/11/28 20:29:16 We should go the rest of the way and avoid using i
hans 2011/11/29 14:44:34 Done.
}
function done(message)
« no previous file with comments | « no previous file | chrome/test/data/indexeddb/cursor_prefetch.html » ('j') | chrome/test/data/indexeddb/cursor_prefetch.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698