Title: [108725] trunk/LayoutTests
Revision
108725
Author
[email protected]
Date
2012-02-23 21:24:55 -0800 (Thu, 23 Feb 2012)

Log Message

REGRESSION: Assertion failure in Document::setCompatibilityMode() (!m_styleSheets->length()) in fast/dynamic/crash-paint-no-documentElement-renderer.html
https://bugs.webkit.org/show_bug.cgi?id=79333

Reviewed by Sam Weinig.

Disabled the test. The assertion failure is tracked by <http://webkit.org/b/68859>.

* fast/dynamic/crash-paint-no-documentElement-renderer.html: Removed.
* fast/dynamic/crash-paint-no-documentElement-renderer.html-disabled: Copied from LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html.
* platform/chromium/test_expectations.txt:
* platform/efl/Skipped:
* platform/gtk/test_expectations.txt:
* platform/mac/test_expectations.txt:
* platform/qt/test_expectations.txt:

Modified Paths

Added Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (108724 => 108725)


--- trunk/LayoutTests/ChangeLog	2012-02-24 04:58:34 UTC (rev 108724)
+++ trunk/LayoutTests/ChangeLog	2012-02-24 05:24:55 UTC (rev 108725)
@@ -1,3 +1,20 @@
+2012-02-23  Dan Bernstein  <[email protected]>
+
+        REGRESSION: Assertion failure in Document::setCompatibilityMode() (!m_styleSheets->length()) in fast/dynamic/crash-paint-no-documentElement-renderer.html
+        https://bugs.webkit.org/show_bug.cgi?id=79333
+
+        Reviewed by Sam Weinig.
+
+        Disabled the test. The assertion failure is tracked by <http://webkit.org/b/68859>.
+
+        * fast/dynamic/crash-paint-no-documentElement-renderer.html: Removed.
+        * fast/dynamic/crash-paint-no-documentElement-renderer.html-disabled: Copied from LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html.
+        * platform/chromium/test_expectations.txt:
+        * platform/efl/Skipped:
+        * platform/gtk/test_expectations.txt:
+        * platform/mac/test_expectations.txt:
+        * platform/qt/test_expectations.txt:
+
 2012-02-23  Kenichi Ishibashi  <[email protected]>
 
         Unreviewed test fix after r108699.

Deleted: trunk/LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html (108724 => 108725)


--- trunk/LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html	2012-02-24 04:58:34 UTC (rev 108724)
+++ trunk/LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html	2012-02-24 05:24:55 UTC (rev 108725)
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body _onload_="go()">
-<p>Bug 64284: Crash in RenderBox::paintBoxDecorations when documentElement has no renderer</p>
-<p>For this test to PASS, it should not ASSERT or CRASH.</p>
-<script>
-    if (window.layoutTestController)
-        layoutTestController.dumpAsText();
-
-    function go() {
-        document.open();
-        var oUElement = document.createElement("U");
-        oUElement.hidden=true;
-        oUElement.innerHTML="<style>*{-webkit-border-before-style:groove}";
-        document.appendChild(oUElement);
-        document.close();
-    }
-</script>
-</body>
-</html>

Copied: trunk/LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html-disabled (from rev 108724, trunk/LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html) (0 => 108725)


--- trunk/LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html-disabled	                        (rev 0)
+++ trunk/LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html-disabled	2012-02-24 05:24:55 UTC (rev 108725)
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<body _onload_="go()">
+<p>Bug 64284: Crash in RenderBox::paintBoxDecorations when documentElement has no renderer</p>
+<p>For this test to PASS, it should not ASSERT or CRASH.</p>
+<script>
+    if (window.layoutTestController)
+        layoutTestController.dumpAsText();
+
+    function go() {
+        document.open();
+        var oUElement = document.createElement("U");
+        oUElement.hidden=true;
+        oUElement.innerHTML="<style>*{-webkit-border-before-style:groove}";
+        document.appendChild(oUElement);
+        document.close();
+    }
+</script>
+</body>
+</html>

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (108724 => 108725)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-02-24 04:58:34 UTC (rev 108724)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-02-24 05:24:55 UTC (rev 108725)
@@ -3512,9 +3512,6 @@
 
 BUGWK74374 WIN : fast/forms/select-listbox-multiple-no-focusring.html = PASS IMAGE
 
-// The test hits an ASSERT in Debug.
-BUGWK68859 DEBUG : fast/dynamic/crash-paint-no-documentElement-renderer.html = CRASH
-
 BUGWK74662 : fast/text/unicode-variation-selector.html = IMAGE+TEXT
 
 BUGWK74634 WIN : compositing/absolute-position-changed-with-composited-parent-layer.html = IMAGE

Modified: trunk/LayoutTests/platform/efl/Skipped (108724 => 108725)


--- trunk/LayoutTests/platform/efl/Skipped	2012-02-24 04:58:34 UTC (rev 108724)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-02-24 05:24:55 UTC (rev 108725)
@@ -2025,10 +2025,6 @@
 tables/mozilla/bugs/bug2947.html
 fast/js/constructor-length.html
 
-# The test hits an ASSERT in Debug.
-# https://bugs.webkit.org/show_bug.cgi?id=68859
-fast/dynamic/crash-paint-no-documentElement-renderer.html = CRASH
-
 # EFL port doesn't support web audio/video API fully. Timeout error happens in these test cases.
 media/W3C/audio/events/event_canplay.html
 media/W3C/audio/events/event_canplay_manual.html

Modified: trunk/LayoutTests/platform/gtk/test_expectations.txt (108724 => 108725)


--- trunk/LayoutTests/platform/gtk/test_expectations.txt	2012-02-24 04:58:34 UTC (rev 108724)
+++ trunk/LayoutTests/platform/gtk/test_expectations.txt	2012-02-24 05:24:55 UTC (rev 108725)
@@ -6,8 +6,6 @@
 BUGWK67007 DEBUG : fast/ruby/after-table-doesnt-crash.html = CRASH
 BUGWK67007 DEBUG : fast/ruby/generated-after-counter-doesnt-crash.html = CRASH
 BUGWK67007 DEBUG : fast/ruby/generated-before-and-after-counter-doesnt-crash.html = CRASH
-// The test hits an ASSERT in Debug.
-BUGWK68859 DEBUG : fast/dynamic/crash-paint-no-documentElement-renderer.html = CRASH
 
 BUGWK76814 DEBUG : fast/xmlhttprequest/xmlhttprequest-get.xhtml = CRASH
 

Modified: trunk/LayoutTests/platform/mac/test_expectations.txt (108724 => 108725)


--- trunk/LayoutTests/platform/mac/test_expectations.txt	2012-02-24 04:58:34 UTC (rev 108724)
+++ trunk/LayoutTests/platform/mac/test_expectations.txt	2012-02-24 05:24:55 UTC (rev 108725)
@@ -41,9 +41,6 @@
 
 BUGWK73766 : css3/unicode-bidi-isolate-aharon-failing.html = FAIL
 
-// The test hits an ASSERT in Debug.
-BUGWK68859 DEBUG : fast/dynamic/crash-paint-no-documentElement-renderer.html = CRASH
-
 // Need rebaselining after 71244
 BUGWK74432 : css2.1/20110323/border-conflict-style-079.htm = IMAGE
 BUGWK74432 : css2.1/20110323/floating-replaced-height-008.htm = IMAGE

Modified: trunk/LayoutTests/platform/qt/test_expectations.txt (108724 => 108725)


--- trunk/LayoutTests/platform/qt/test_expectations.txt	2012-02-24 04:58:34 UTC (rev 108724)
+++ trunk/LayoutTests/platform/qt/test_expectations.txt	2012-02-24 05:24:55 UTC (rev 108725)
@@ -23,9 +23,6 @@
 
 BUGWK74270 : fast/forms/basic-selects.html = FAIL
 
-// The test hits an ASSERT in Debug.
-BUGWK68859 DEBUG : fast/dynamic/crash-paint-no-documentElement-renderer.html = CRASH
-
 // Needs baseline
 BUGWK76118 : fast/css/text-overflow-input.html = MISSING
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to