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) |