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

Side by Side Diff: LayoutTests/fast/box-sizing/css-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: /Users/yukisekiguchi/work/chromium-blink/src/third_party/WebKit/LayoutTests/fast/box-sizing/table-c… 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/css-table-collapse-expected.txt » ('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 display: table;
9 border-collapse: collapse;
10 border: 25px solid green;
11 border-top: 10px solid cyan;
12 position: absolute;
13 box-sizing: border-box;
14 outline: 5px solid blue;
15 }
16 .tbody { display: table-row-group; }
17 .tr { display: table-row; }
18 .td { display: table-cell; }
19 .block {
20 background-color: yellow;
21 height: 50px;
22 width: 50px;
23 }
24 </style>
25 <script src="../../resources/check-layout.js"></script>
26 <script>
27 window.onload = function () {
28 checkLayout(".table");
29 }
30 </script>
31 <div class="table" data-expected-height="85px">
32 <div class="tbody">
33 <div class="tr">
34 <div class="td">
35 <div class="block"></div>
36 </div>
37 </div>
38 </div>
39 </div>
40 <div style="top: 200px;" class="table" data-expected-height="85px">
41 <div class="tbody">
42 <div class="tr">
43 <div class="td">
44 <div class="block"></div>
45 </div>
46 </div>
47 </div>
48 </div>
49 <div style="bottom: 100px;" class="table" data-expected-height="85px">
50 <div class="tbody">
51 <div class="tr">
52 <div class="td">
53 <div class="block"></div>
54 </div>
55 </div>
56 </div>
57 </div>
58 </body>
59 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/box-sizing/css-table-collapse-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698