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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/break-in-tbody-after-caption.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 <caption>
15 <br><br>
16 </caption>
17 <col style="width:20px;">
18 <col style="width:20px;">
19 <tbody>
20 <tr data-expected-height="79">
21 <td data-expected-height="79" style="vertical-align:top;">
22 <br>
23 <div data-offset-y="20" style="position:relative; background :blue;">
24 <br><br>
25 </div>
26 </td>
27 <td data-expected-height="79" style="vertical-align:top; backgro und:blue;">
28 <div style="background:white;"><br></div>
29 <div data-offset-y="20" style="position:relative;"></div>
30 </td>
31 </tr>
32 </tbody>
33 </table>
34 </div>
35 <script src="../resources/check-layout.js"></script>
36 <script>
37 checkLayout("#multicol");
38 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698