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

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: fix indentation 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
« no previous file with comments | « no previous file | chrome/test/data/indexeddb/cursor_prefetch.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..69665d05ef69b7f139efbf0dbc62a2f90cedd2ef 100644
--- a/chrome/test/data/indexeddb/common.js
+++ b/chrome/test/data/indexeddb/common.js
@@ -4,7 +4,10 @@
function debug(message)
{
- document.getElementById('status').innerHTML += '<br/>' + message;
+ var span = document.createElement("span");
+ span.appendChild(document.createTextNode(message));
+ span.appendChild(document.createElement("br"));
+ document.getElementById('status').appendChild(span);
}
function done(message)
« no previous file with comments | « no previous file | chrome/test/data/indexeddb/cursor_prefetch.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698