| Index: chrome/common/extensions/docs/examples/api/tabs/inspector/tabs_api.html
|
| diff --git a/chrome/common/extensions/docs/examples/api/tabs/inspector/tabs_api.html b/chrome/common/extensions/docs/examples/api/tabs/inspector/tabs_api.html
|
| index e8047abb1e3dce602ac492d73a2d27cf7e0c2510..159cb27898c4cd3c77f07a9412e573c7d9f09df7 100644
|
| --- a/chrome/common/extensions/docs/examples/api/tabs/inspector/tabs_api.html
|
| +++ b/chrome/common/extensions/docs/examples/api/tabs/inspector/tabs_api.html
|
| @@ -131,12 +131,13 @@ function removeTab(tabId) {
|
| }
|
|
|
| function appendToLog(logLine) {
|
| - var log = document.getElementById('log');
|
| - log.innerHTML = '<div> > ' + logLine + '</div>' + log.innerHTML;
|
| + document.getElementById('log')
|
| + .appendChild(document.createElement('div'))
|
| + .innerText = "> " + logLine;
|
| }
|
|
|
| function clearLog() {
|
| - document.getElementById('log').innerHTML = '';
|
| + document.getElementById('log').innerText = '';
|
| }
|
|
|
| chrome.windows.onCreated.addListener(function(createInfo) {
|
|
|