Title: [225017] trunk/LayoutTests
Revision
225017
Author
[email protected]
Date
2017-11-18 09:25:28 -0800 (Sat, 18 Nov 2017)

Log Message

Add test for a multicolumn render tree update issue
https://bugs.webkit.org/show_bug.cgi?id=179860

Reviewed by Zalan Bujtas.

* fast/multicol/column-span-range-crash-expected.txt: Added.
* fast/multicol/column-span-range-crash.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (225016 => 225017)


--- trunk/LayoutTests/ChangeLog	2017-11-18 15:17:02 UTC (rev 225016)
+++ trunk/LayoutTests/ChangeLog	2017-11-18 17:25:28 UTC (rev 225017)
@@ -1,5 +1,15 @@
 2017-11-18  Antti Koivisto  <[email protected]>
 
+        Add test for a multicolumn render tree update issue
+        https://bugs.webkit.org/show_bug.cgi?id=179860
+
+        Reviewed by Zalan Bujtas.
+
+        * fast/multicol/column-span-range-crash-expected.txt: Added.
+        * fast/multicol/column-span-range-crash.html: Added.
+
+2017-11-18  Antti Koivisto  <[email protected]>
+
         REGRESSION (r220646): ASSERTION FAILED: skipAssert || nextSiblingRenderer(node) == m_nextSibling
         https://bugs.webkit.org/show_bug.cgi?id=179855
         <rdar://problem/35464071>

Added: trunk/LayoutTests/fast/multicol/column-span-range-crash-expected.txt (0 => 225017)


--- trunk/LayoutTests/fast/multicol/column-span-range-crash-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/fast/multicol/column-span-range-crash-expected.txt	2017-11-18 17:25:28 UTC (rev 225017)
@@ -0,0 +1 @@
+

Added: trunk/LayoutTests/fast/multicol/column-span-range-crash.html (0 => 225017)


--- trunk/LayoutTests/fast/multicol/column-span-range-crash.html	                        (rev 0)
+++ trunk/LayoutTests/fast/multicol/column-span-range-crash.html	2017-11-18 17:25:28 UTC (rev 225017)
@@ -0,0 +1,20 @@
+<html>
+<head>
+<style>
+set, frameset, * { columns: 1 1px }
+</style>
+<script>
+if (window.testRunner)
+    testRunner.dumpAsText();
+function boomz() {
+try { var a = document.createRange(); } catch(e) { }
+try { a.setEndBefore(b); } catch(e) { }
+try { var c = a.extractContents(); } catch(e) { }
+}
+</script>
+</head>
+<body _onload_=boomz()>
+<audio id="x" controls=""></audio>
+<ol id="b" style="-webkit-column-span: all;"></ol>
+</body>
+</html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to