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
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
table
/
border-collapsing
/
bug14274.html
blob
3e3ecffce7b245641a888c698f09de7c1dd3e30c
1
<!--
2
Spanned TD is last on its TR, and TR border is wider, so TR border should be used.
3
-->
4
<html>
5
<head>
6
<title></title>
7
<style
type
=
"text/css"
>
8
TABLE
{
9
border-collapse
:
collapse
;
10
}
11
TD
{
12
width
:
50px
;
13
height
:
50px
;
14
}
15
</style>
16
</head>
17
<body>
18
<table>
19
<tbody>
20
<tr
style
=
"border-right:2px solid lime"
>
21
<td
style
=
"border-right:1px solid blue"
colSpan
=
"3"
/>
22
</tr>
23
</tbody>
24
</table>
25
</body>
26
</html>