| Index: chrome/test/data/extensions/api_test/automation/tests/tabs/common.js
|
| diff --git a/chrome/test/data/extensions/api_test/automation/tests/tabs/common.js b/chrome/test/data/extensions/api_test/automation/tests/tabs/common.js
|
| index 5e41c98e8e3acd016f4bfb135e2c548b18ae31e6..af464a2573a079b980d4cbcb2470a88c6610d6b7 100644
|
| --- a/chrome/test/data/extensions/api_test/automation/tests/tabs/common.js
|
| +++ b/chrome/test/data/extensions/api_test/automation/tests/tabs/common.js
|
| @@ -24,15 +24,10 @@
|
| chrome.automation.getTree(function (returnedRootNode) {
|
| rootNode = returnedRootNode;
|
| if (rootNode.attributes.docLoaded) {
|
| - console.log('In getTree() callback: ' +
|
| - 'docLoaded attr already true; running tests');
|
| chrome.test.runTests(allTests);
|
| return;
|
| }
|
| - console.log('In getTree() callback: ' +
|
| - 'docLoaded false; waiting for loadComplete');
|
| rootNode.addEventListener('loadComplete', function() {
|
| - console.log('loadComplete received; running tests.');
|
| chrome.test.runTests(allTests);
|
| });
|
| });
|
|
|