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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/table-row-dimensions.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:70px ; line-height:20px; orphans:1; widows:1;">
7 <table style="width:50px;" cellspacing="0" cellpadding="0">
8 <tbody>
9 <tr data-offset-y="0" data-expected-height="60">
10 <td><br><br><br></td>
11 </tr>
12 <tr data-offset-y="70" data-expected-height="60">
13 <td><br><br><br></td>
14 </tr>
15 <tr data-offset-y="140" data-expected-height="60">
16 <td><br><br><br></td>
17 </tr>
18 </tbody>
19 <tfoot>
20 <tr data-offset-y="210" data-expected-height="60">
21 <td><br><br><br></td>
22 </tr>
23 </tfoot>
24 </table>
25 </div>
26 <script src="../resources/check-layout.js"></script>
27 <script>
28 checkLayout("#multicol");
29 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698