Changeset 198971 in webkit


Ignore:
Timestamp:
Apr 2, 2016 1:59:19 AM (8 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r198963): css3/filters/backdrop/dynamic-backdrop-filter-change.html frequently fails
<http://webkit.org/b/149319>

Unreviewed attempt to fix layout test.

  • css3/filters/backdrop/dynamic-backdrop-filter-change.html:

Use testRunner.notifyDone() after testRunner.waitUntilDone().

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r198963 r198971  
     12016-04-02  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r198963): css3/filters/backdrop/dynamic-backdrop-filter-change.html frequently fails
     4        <http://webkit.org/b/149319>
     5
     6        Unreviewed attempt to fix layout test.
     7
     8        * css3/filters/backdrop/dynamic-backdrop-filter-change.html:
     9        Use testRunner.notifyDone() after testRunner.waitUntilDone().
     10
    1112016-04-01  Simon Fraser  <simon.fraser@apple.com>
    212
  • trunk/LayoutTests/css3/filters/backdrop/dynamic-backdrop-filter-change.html

    r198963 r198971  
    2424    <script>
    2525        if (window.testRunner)
    26             testRunner.notifyDone();
     26            testRunner.waitUntilDone();
    2727
    2828        window.addEventListener('load', function() {
    2929            window.setTimeout(function() {
    3030                document.getElementById('box').classList.add('changed');
     31                window.setTimeout(function() {
     32                    if (window.testRunner)
     33                        testRunner.notifyDone();
     34                }, 0);
    3135            }, 0);
    3236        }, false);
Note: See TracChangeset for help on using the changeset viewer.