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

Side by Side Diff: LayoutTests/fast/box-sizing/table-collapse-expected.html

Issue 25206002: A height of a table which has position: absolute and box-sizing: border-box ignores half of the bor… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 <html>
3 <head>
4 </head>
5 <body>
6 <style>
7 table {
8 border-collapse: collapse;
9 border: 25px solid green;
10 border-top: 10px solid cyan;
11 position: absolute;
12 outline: 5px solid blue;
13 }
14 div {
15 background-color: yellow;
16 height: 50px;
17 width: 50px;
18 }
19 </style>
20 <table>
21 <tbody>
22 <tr>
23 <td>
24 <div></div>
25 </td>
26 </tr>
27 </tbody>
28 </table>
29 <table style="top: 200px;">
30 <tbody>
31 <tr>
32 <td>
33 <div></div>
34 </td>
35 </tr>
36 </tbody>
37 </table>
38 <table style="bottom: 100px;">
39 <tbody>
40 <tr>
41 <td>
42 <div></div>
43 </td>
44 </tr>
45 </tbody>
46 </table>
47 </body>
48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698