Changeset 66684 in webkit


Ignore:
Timestamp:
Sep 2, 2010 1:45:25 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-09-02 Matthew Willis <lilmatt@flock.com>

Reviewed by Eric Seidel.

Attempt to fix flaxy test that contains setTimeout() by adding
layoutTestController.waitUntilDone() and ...notifyDone()
https://bugs.webkit.org/show_bug.cgi?id=45097

  • fast/css/disabled-author-styles.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r66681 r66684  
     12010-09-02  Matthew Willis  <lilmatt@flock.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Attempt to fix flaxy test that contains setTimeout() by adding
     6        layoutTestController.waitUntilDone() and ...notifyDone()
     7        https://bugs.webkit.org/show_bug.cgi?id=45097
     8
     9        * fast/css/disabled-author-styles.html:
     10
    1112010-09-02  Eric Seidel  <eric@webkit.org>
    212
  • trunk/LayoutTests/fast/css/disabled-author-styles.html

    r28071 r66684  
    88               return;
    99            }
    10 
     10            layoutTestController.waitUntilDone();
    1111            layoutTestController.setAuthorAndUserStylesEnabled(false);
    1212
     
    2020            if (matchedRules && matchedRules.length)
    2121                alert(matchedRules.length + " rule(s) were returned from getMatchedCSSRules, expected zero.");
     22
     23            if (window.layoutTestController) {
     24                layoutTestController.notifyDone();
     25            }
    2226        }
    2327    </script>
Note: See TracChangeset for help on using the changeset viewer.