Bug 1729777 [wpt PR 30405] - Parsing for contain-intrinsic-size: auto <length>, a...
[gecko.git] / testing / web-platform / tests / css / css-backgrounds / ttwf-reftest-borderRadius.html
blob6950d17f27c50d1b54cefe1bc4342af74108955e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test Background and border</title>
5 <link rel="author reviewer" title="Jinlong Zhang" href="mailto:jinlongz@oupeng.com">
6 <link rel="help" href="http://www.w3.org/TR/css3-background/#border-radius-tables">
7 <link rel="match" href="reference/ttwf-reftest-borderRadius-ref.html">
8 <meta name="assert" content="Table with 'border-collapse: collapse;' declaration, it's 'border-radius' style will not work.">
9 <style type="text/css">
10 #testCon{border: 4px solid green; border-radius: 5px; border-collapse: collapse;}
11 #testCon td{width: 60px; height: 60px; border: 4px solid green; border-radius: 10px;}
12 </style>
13 </head>
14 <body>
15 <p>The test passes if table's 'border-radius' style don't work.</p>
16 <p>CSS3 UAs should ignore border-radius properties applied to internal table elements when 'border-collapse' is 'collapse'.</p>
17 <table id="testCon">
18 <tr><td></td><td></td><td></td></tr>
19 <tr><td></td><td></td><td></td></tr>
20 <tr><td></td><td></td><td></td></tr>
21 </table>
23 </body>
24 </html>