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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-section.html

Issue 2421613002: Lay out table children in visual order, and set position and size. (Closed)
Patch Set: 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; } /* A second layout pass might hide bugs. */
4 </style>
5 <p>There should be a blue, a cyan, and another blue square below, stacked vertic ally.</p>
6 <div id="multicol" style="columns:3; column-gap:0; column-fill:auto; width:60px; height:99px; line-height:20px; orphans:1; widows:1;">
7 <br>
8 <br>
9 <br>
10 <table cellspacing="0" cellpadding="0">
11 <thead>
12 <tr>
13 <td style="vertical-align:top;"><br><br></td>
14 <td style="vertical-align:top;"><br><br></td>
15 </tr>
16 </thead>
17 <tbody>
18 <tr data-expected-height="60">
19 <td data-expected-height="60"><br><br><br></td>
20 <td data-expected-height="60" style="background:blue;">
21 <div data-offset-y="20" data-expected-height="20" style="wid th:20px; background:cyan;"><br></div>
22 </td>
23 </tr>
24 </tbody>
25 </table>
26 </div>
27 <script src="../resources/check-layout.js"></script>
28 <script>
29 checkLayout("#multicol");
30 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698