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

Side by Side Diff: LayoutTests/fast/box-sizing/table-collapse.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
« no previous file with comments | « no previous file | LayoutTests/fast/box-sizing/table-collapse-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 box-sizing: border-box;
13 outline: 5px solid blue;
14 }
15 div {
16 background-color: yellow;
17 height: 50px;
18 width: 50px;
19 }
20 </style>
21 <table>
22 <tbody>
23 <tr>
24 <td>
25 <div></div>
26 </td>
27 </tr>
28 </tbody>
29 </table>
30 <table style="top: 200px;">
Julien - ping for review 2013/10/03 18:04:01 Can we use a checkLayout test instead of a ref-tes
31 <tbody>
32 <tr>
33 <td>
34 <div></div>
35 </td>
36 </tr>
37 </tbody>
38 </table>
39 <table style="bottom: 100px;">
Julien - ping for review 2013/10/03 18:04:01 You should also test CSS table as they have a diff
40 <tbody>
41 <tr>
42 <td>
43 <div></div>
44 </td>
45 </tr>
46 </tbody>
47 </table>
48 </body>
49 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/box-sizing/table-collapse-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698