OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <script> | |
5 if (window.testRunner) | |
6 testRunner.dumpAsTextWithPixelResults(); | |
7 </script> | |
8 <style> | |
9 .tableWithBorderRadius { | |
10 background-color: lightgrey; | |
11 border: 1px solid black; | |
12 border-radius: 5px; | |
13 display: table; | |
14 width: 100px; | |
15 height: 100px; | |
16 } | |
17 | |
18 .description { | |
19 font-size: 0px; | |
20 } | |
21 </style> | |
22 </head> | |
23 <body> | |
24 <div class="tableWithBorderRadius"></div> | |
25 <div class="description">Test for crbug.com/305216: Borders for CSS tables don't display when border-radius is used. | |
Julien - ping for review
2013/10/25 00:29:16
Let's add a <br> to force the text on 2 lines for
tasak
2013/11/27 08:20:44
Done.
| |
26 If this test passes, rounded black borders will be shown. Otherwise, no black bo rders will be shown. | |
Julien - ping for review
2013/10/25 00:29:16
Let's remove the 'otherwise ...' bit as I find it
tasak
2013/11/27 08:20:44
Done.
| |
27 </div> | |
28 </body> | |
29 </html> | |
OLD | NEW |