Chromium Code Reviews| Index: LayoutTests/fast/table/table-with-border-radius.html |
| diff --git a/LayoutTests/fast/table/table-with-border-radius.html b/LayoutTests/fast/table/table-with-border-radius.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9b543a758dd1a61671b66b4578b7c76a7962c171 |
| --- /dev/null |
| +++ b/LayoutTests/fast/table/table-with-border-radius.html |
| @@ -0,0 +1,29 @@ |
| +<!doctype html> |
| +<html> |
| +<head> |
| +<script> |
| +if (window.testRunner) |
| + testRunner.dumpAsTextWithPixelResults(); |
| +</script> |
| +<style> |
| +.tableWithBorderRadius { |
| + background-color: lightgrey; |
| + border: 1px solid black; |
| + border-radius: 5px; |
| + display: table; |
| + width: 100px; |
| + height: 100px; |
| +} |
| + |
| +.description { |
| + font-size: 0px; |
| +} |
| +</style> |
| +</head> |
| +<body> |
| +<div class="tableWithBorderRadius"></div> |
| +<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.
|
| +If this test passes, rounded black borders will be shown. Otherwise, no black borders 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.
|
| +</div> |
| +</body> |
| +</html> |