Chromium Code Reviews| Index: pkg/unittest/lib/test_controller.js |
| diff --git a/pkg/unittest/lib/test_controller.js b/pkg/unittest/lib/test_controller.js |
| index 439b7033aea8b4d4a097ec61f907ad8848ba0cc4..fc8db1611a5ae5b792cff8cfba3b2e6357dd3ede 100644 |
| --- a/pkg/unittest/lib/test_controller.js |
| +++ b/pkg/unittest/lib/test_controller.js |
| @@ -23,7 +23,8 @@ window.onerror = function (message, url, lineNumber) { |
| window.postMessage('unittest-suite-external-error', '*'); |
| }; |
| -if (navigator.webkitStartDart) { |
| +// Start Dartium/content_shell, unless we are waiting for HTML Imports to load. |
| +if (navigator.webkitStartDart && !window.HTMLImports) { |
|
kustermann
2013/08/30 15:34:43
Please elaborate here a bit (in particular mention
Jennifer Messerly
2013/08/30 18:07:36
Attempted to clarify:
// Start Dartium/content_sh
|
| navigator.webkitStartDart(); |
| } |