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

Side by Side Diff: LayoutTests/fast/box-sizing/table-no-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: 25px solid green;
9 border-top: 10px solid cyan;
10 position: absolute;
11 outline: 5px solid blue;
12 }
13 div {
14 background-color: yellow;
15 height: 50px;
16 width: 50px;
17 }
18 </style>
19 <table>
20 <tbody>
21 <tr>
22 <td>
23 <div></div>
24 </td>
25 </tr>
26 </tbody>
27 </table>
28 <table style="top: 200px;">
29 <tbody>
30 <tr>
31 <td>
32 <div></div>
33 </td>
34 </tr>
35 </tbody>
36 </table>
37 <table style="bottom: 100px;">
38 <tbody>
39 <tr>
40 <td>
41 <div></div>
42 </td>
43 </tr>
44 </tbody>
45 </table>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698