Comment #5 on issue 25548 by [email protected]: worker-timeout.htmll Layout Test is flakey http://code.google.com/p/chromium/issues/detail?id=25548
That happens because we run worker tests in ui_tests environment and there we don't have real code from test_shell so we fake layoutTestController.notifyDone() by setting a cookie that is polled on some interval from the test. So the notifyDone does not really makes snapshot right away and sometimes lets the additional event from still firing interval to print out. It is tempting to just add clearInterval at the same time as notifyDone() so there is guaranteed no spurious extra output. However, the purpose of the test is to verify that destructing the worker while it has active interval does not cause crash (it did at some point). I think a good solution is to block logging (while still having a firing interval). I'll fix this upstream. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings -- Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs
