Index: third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-hidden-vs-red.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-hidden-vs-red.html b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-hidden-vs-red.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d32b5645946a74561bbd8d69dc74b18a8a44cdb3 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-hidden-vs-red.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<style> |
+ td { width: 50px; height: 50px; } |
+</style> |
+</head> |
+<body> |
+ <table style="border-collapse: collapse"> |
+ <tr><td style="border-bottom: hidden;" colspan="2"></td></tr> |
+ <!-- There should not be any red border in the output. --> |
+ <tr><td style="border-top: 10px solid red; border-left: 10px solid green;" colspan="2"></td></tr> |
+ </table> |
+</body> |
+</html> |