Index: third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border-quirks-mode.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border-quirks-mode.html b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border-quirks-mode.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9be5815f3857f6e5884088b522a03667cbd99603 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border-quirks-mode.html |
@@ -0,0 +1,19 @@ |
+<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> |