repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
css
/
table-collapsed-borders.html
blob
7e9851e4b947291d6d45fe6307ea7d985bad308d
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<title>
Test for Buzilla Bug
67877
:
"border: collapse"
+
"display: none"
rows in the tbody while having thead or tfoot doesn't render the opposite border.
</title>
5
6
<style>
7
table {
8
border:
3
px solid;
9
width:
100
%;
10
border-collapse: collapse;
11
}
12
tbody tr {
13
display: none;
14
}
15
</style>
16
17
</head>
18
<body>
19
20
<table>
21
<thead>
22
<tr>
23
<th></th>
24
</tr>
25
</thead>
26
<tbody>
27
<tr>
28
<td></td>
29
</tr>
30
</tbody>
31
</table>
32
33
34
<table>
35
<tbody>
36
<tr>
37
<td></td>
38
</tr>
39
</tbody>
40
<tfoot>
41
<tr>
42
<td></td>
43
</tr>
44
</tfoot>
45
</table>
46
47
</body></html>