[Webkit-unassigned] [Bug 84072] Layout Test platform/chromium/compositing/filters/background-filter-blur-outsets.html is failing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 19 11:28:49 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=84072


James Robinson <jamesr at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jamesr at chromium.org




--- Comment #2 from James Robinson <jamesr at chromium.org>  2012-04-19 11:28:49 PST ---
This is a flaky test:

13      function setBlur() {
14        var blurNode = window.document.getElementById('blur');
15        window.internals.setBackgroundBlurOnNode(blurNode, 10);
16        layoutTestController.notifyDone();
17      }
18    
19      if (window.layoutTestController) {
20        if (window.internals) {
21          window.setTimeout(setBlur, 0);
22          layoutTestController.waitUntilDone();
23        }
24        layoutTestController.dumpAsText(true);
25      }

it's setting a timeout before the <body> and relying the <div id="blur" being parsed when the timer runs. this isn't guaranteed - the timer might fire before we parse the rest of the page.  we should run the test code in the load event.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list