blob: ab870dbbb4afdac732eb76daf9fae4236ffce3c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<!DOCTYPE html>
<style>
table, .table {
border-spacing: 0px;
table-layout: fixed;
width: 0px;
}
.table {
display: table;
}
.td {
display: table-cell;
}
.colgroup {
display: table-column-group;
}
.col {
display: table-column;
}
td, .td {
width: 80px;
padding: 0px;
height: 100px;
border: 10px solid green;
}
</style>
<p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=87536">87536</a>: REGRESSION(r111742): box-sizing: border-box doesn't work on fixed table layout</p>
<p>Testing that a column fixed width should apply to the cell's border-box and is not impacted by the cell's box-sizing.</p>
<p>You should see 4 100px * 100px cells with green borders.</p>
<table>
<colgroup>
<col></col>
</colgroup>
<colgroup>
<col></col>
</colgroup>
<tbody>
<td></td>
<td></td>
</tbody>
</table>
<div class="table">
<div class="colgroup">
<div class="col"></div>
</div>
<div class="colgroup">
<div class="col"></div>
</div>
<div class="td"></div>
<div class="td"></div>
</div>
|