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..54fb434985aa9c9c597693c3ad8f132426015ad1 |
--- /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.<br> |
+If this test passes, rounded black borders will be shown. |
+</div> |
+</body> |
+</html> |