Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/table-row-dimensions-with-thead.html

Issue 2433473002: Move table row pagination strut insertion to the first layout pass. (Closed)
Patch Set: Rebaseline semi-manually thank you very much. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 body { overflow: scroll; }
4 tr { break-inside:avoid; }
5 </style>
6 <div id="multicol" style="columns:4; column-fill:auto; column-gap:0; height:90px ; line-height:20px; orphans:1; widows:1;">
7 <table style="width:50px;" cellspacing="0" cellpadding="0">
8 <thead style="break-inside:avoid;">
9 <!-- This is a table header that repeats in all columns the table oc curs. -->
10 <tr data-offset-y="0" data-expected-height="20">
11 <td><br></td>
12 </tr>
13 </thead>
14 <tbody>
15 <tr data-offset-y="20" data-expected-height="60">
16 <td><br><br><br></td>
17 </tr>
18 <tr data-offset-y="110" data-expected-height="60">
19 <td><br><br><br></td>
20 </tr>
21 <tr data-offset-y="200" data-expected-height="60">
22 <td><br><br><br></td>
23 </tr>
24 </tbody>
25 <tfoot>
26 <tr data-offset-y="290" data-expected-height="60">
27 <td><br><br><br></td>
28 </tr>
29 </tfoot>
30 </table>
31 </div>
32 <script src="../resources/check-layout.js"></script>
33 <script>
34 checkLayout("#multicol");
35 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698