| Index: third_party/WebKit/LayoutTests/fragmentation/cells-with-intrinsic-padding.html
|
| diff --git a/third_party/WebKit/LayoutTests/fragmentation/cells-with-intrinsic-padding.html b/third_party/WebKit/LayoutTests/fragmentation/cells-with-intrinsic-padding.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4d3d2f75185459d0114c1c78ec100068201a30f5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fragmentation/cells-with-intrinsic-padding.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +td {
|
| + font: 20px Ahem;
|
| +}
|
| +</style>
|
| +<p>crbug.com/617443: Avoid setting a pagination strut on cells when we're laying them out to figure out the height of their row.
|
| + When we're figuring out the height of the row, we need the raw height of cells and that should exclude struts.
|
| + The black boxes in the cells below should be on the same baseline.</p>
|
| +<div id="container" style="columns:1; column-fill:auto; column-gap:0; width:250px; height:150px;">
|
| + <table>
|
| + <tr><td>Text Text</td><td>Text</td></tr>
|
| + <tr><td>Text Text</td><td>Text</td></tr>
|
| + <tr><td>Text Text</td><td>Text</td></tr>
|
| + <tr><td>Text Text</td><td>Text</td></tr>
|
| + </table>
|
| +</div>
|
| +<script>
|
| + document.body.offsetTop;
|
| + document.getElementById("container").style.width="600px";
|
| +</script>
|
|
|