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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/tbody-before-thead.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 <tbody>
12 <tr data-expected-height="60">
13 <td data-expected-height="60"><br><br><br></td>
14 <td data-expected-height="60" style="background:blue;">
15 <div data-offset-y="20" data-expected-height="20" style="wid th:20px; background:cyan;"><br></div>
16 </td>
17 </tr>
18 </tbody>
19 <thead>
20 <tr>
21 <td style="vertical-align:top;"><br><br></td>
22 <td style="vertical-align:top;"><br><br></td>
23 </tr>
24 </thead>
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