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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/break-in-second-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 {
4 overflow:scroll; /* A second layout pass might hide bugs. */
5 color: black;
6 background: white;
7 }
8 </style>
9 <p>There should be a blue square below.</p>
10 <div id="multicol" style="position:relative; columns:3; column-gap:0; column-fil l:auto; height:99px; line-height:20px; orphans:1; widows:1;">
11 <br>
12 <br>
13 <table cellspacing="0" cellpadding="0">
14 <col style="width:20px;">
15 <col style="width:20px;">
16 <thead>
17 <tr>
18 <td style="vertical-align:top;"><br><br></td>
19 <td style="vertical-align:top;"><br><br></td>
20 </tr>
21 </thead>
22 <tbody>
23 <tr data-expected-height="79">
24 <td data-expected-height="79" style="vertical-align:top;">
25 <br>
26 <div data-offset-y="20" style="position:relative; background :blue;">
27 <br><br>
28 </div>
29 </td>
30 <td data-expected-height="79" style="vertical-align:top; backgro und:blue;">
31 <div style="background:white;"><br></div>
32 <div data-offset-y="20" style="position:relative;"></div>
33 </td>
34 </tr>
35 </tbody>
36 </table>
37 </div>
38 <script src="../resources/check-layout.js"></script>
39 <script>
40 checkLayout("#multicol");
41 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698