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:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@196000
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-02-01 Ryosuke Niwa <rniwa@webkit.org>
+
+ [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:
+
2016-02-01 Joseph Pecoraro <pecoraro@apple.com>
Web Inspector: High Level Memory Overview Instrument
<script>
if (window.testRunner) {
- testRunner.waitUntilDone();
+ if ('attachShadow' in Element.prototype)
+ testRunner.waitUntilDone();
testRunner.dumpAsText();
}