Index: third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border.html b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e88305acb5ad57538a08537316c88296e8bc2a43 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<style> |
+ table { border-collapse: collapse; } |
+ td { |
+ height: 10px; |
+ width: 50px; |
+ border: medium solid white; |
+ } |
+</style> |
+</head> |
+<body> |
+<table> |
+ <tr><td colspan="3"></td></tr> |
+ <!-- There should be only a 50px border above the first cell not above the entire line. --> |
+ <tr><td style="border-top: thick solid black;"></td><td></td><td></td></tr> |
+</table> |
+</body> |
+</html> |