Changeset 196000 in webkit


Ignore:
Timestamp:
Feb 1, 2016 6:35:12 PM (8 years ago)
Author:
rniwa@webkit.org
Message:

[GTK] [EFL] [AppleWin] Layout Test fast/shadow-dom/slot-removal-crash-2.html timeouts
https://bugs.webkit.org/show_bug.cgi?id=153772

Reviewed by Michael Catanzaro.

Don't call wait untilDone if attachShadow is not available.

  • fast/shadow-dom/slot-removal-crash-2.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r195999 r196000  
     12016-02-01  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        [GTK] [EFL] [AppleWin] Layout Test fast/shadow-dom/slot-removal-crash-2.html timeouts
     4        https://bugs.webkit.org/show_bug.cgi?id=153772
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        Don't call wait untilDone if attachShadow is not available.
     9
     10        * fast/shadow-dom/slot-removal-crash-2.html:
     11
    1122016-02-01  Joseph Pecoraro  <pecoraro@apple.com>
    213
  • trunk/LayoutTests/fast/shadow-dom/slot-removal-crash-2.html

    r195727 r196000  
    77
    88if (window.testRunner) {
    9     testRunner.waitUntilDone();
     9    if ('attachShadow' in Element.prototype)
     10        testRunner.waitUntilDone();
    1011    testRunner.dumpAsText();
    1112}
Note: See TracChangeset for help on using the changeset viewer.