1 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.0//EN">
4 <title>Border Collapsing Test
</title>
5 <style type=
"text/css">
6 .b { border: solid thin blue
; padding-left: 3em; margin: 2em; }
7 .t { display: table
; border-collapse: collapse
; }
8 .r { display: table-row
; }
9 .c { display: table-cell
; border: solid
20px; height: 2em; width: 2em; }
10 .r.a > .c.a { border-width: 2px; }
13 <body style=
"-webkit-writing-mode: vertical-rl;">
14 <p>The black border below should
<i>not
</i> cut through the top left corner of
15 the blue border. It would cut through with our old behavior, but
16 <a href=
"https://bugs.webkit.org/show_bug.cgi?id=6838">this
</a>
17 bug fix changed our behavior to match the spec.
</p>
20 <p class=
"r a"> <span class=
"c a"></span> <span class=
"c b"></span> </p>
21 <p class=
"r b"> <span class=
"c a"></span> <span class=
"c b"></span> </p>