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