Title: [274854] trunk/LayoutTests
Revision
274854
Author
[email protected]
Date
2021-03-23 01:56:32 -0700 (Tue, 23 Mar 2021)

Log Message

Debug assert failure in RenderTable::layout()
https://bugs.webkit.org/show_bug.cgi?id=218575

Patch by Carlos Garcia Campos <[email protected]> on 2021-03-23
Reviewed by Ryosuke Niwa.

Add a test for r274627.

* printing/page-break-table-sections-crash-expected.txt: Added.
* printing/page-break-table-sections-crash.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (274853 => 274854)


--- trunk/LayoutTests/ChangeLog	2021-03-23 08:52:12 UTC (rev 274853)
+++ trunk/LayoutTests/ChangeLog	2021-03-23 08:56:32 UTC (rev 274854)
@@ -1,3 +1,15 @@
+2021-03-23  Carlos Garcia Campos  <[email protected]>
+
+        Debug assert failure in RenderTable::layout()
+        https://bugs.webkit.org/show_bug.cgi?id=218575
+
+        Reviewed by Ryosuke Niwa.
+
+        Add a test for r274627.
+
+        * printing/page-break-table-sections-crash-expected.txt: Added.
+        * printing/page-break-table-sections-crash.html: Added.
+
 2021-03-23  Martin Robinson  <[email protected]>
 
         No scrolling momentum with 'scroll-snap-type: x mandatory' if the scroller scrolls vertically

Added: trunk/LayoutTests/printing/page-break-table-sections-crash-expected.txt (0 => 274854)


--- trunk/LayoutTests/printing/page-break-table-sections-crash-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/printing/page-break-table-sections-crash-expected.txt	2021-03-23 08:56:32 UTC (rev 274854)
@@ -0,0 +1,4 @@
+P
+A
+S
+S

Added: trunk/LayoutTests/printing/page-break-table-sections-crash.html (0 => 274854)


--- trunk/LayoutTests/printing/page-break-table-sections-crash.html	                        (rev 0)
+++ trunk/LayoutTests/printing/page-break-table-sections-crash.html	2021-03-23 08:56:32 UTC (rev 274854)
@@ -0,0 +1,15 @@
+<table>
+  <tbody><tr><td style="vertical-align: top">P</td></tr></tbody>
+  <tbody><tr><td style="vertical-align: top">A</td></tr></tbody>
+  <tbody><tr><td style="vertical-align: top">S</td></tr></tbody>
+  <tbody><tr><td style="vertical-align: top">S</td></tr></tbody>
+</table>
+<script>
+if (window.testRunner)
+    testRunner.dumpAsText();
+
+if (window.internals)
+    internals.setPrinting(21, 29);
+else
+    print();
+</script>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to