summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/indexeddb/common.js
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/data/indexeddb/common.js')
-rw-r--r--chrome/test/data/indexeddb/common.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/test/data/indexeddb/common.js b/chrome/test/data/indexeddb/common.js
index 5470fec..69665d0 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)