Index: third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-with-both-borders.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-with-both-borders.html b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-with-both-borders.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9daf9835fcdc28981341bc95f57f2fc305714543 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-with-both-borders.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<style> |
+ td { width: 50px; height: 50px; } |
+</style> |
+</head> |
+<body> |
+ <!-- You should see a green top border and a purple left border. There should be NO RED BORDER. --> |
+ <table style="border-collapse: collapse"> |
+ <tr><td style="border-bottom: 10px solid red;" colspan="2"></td></tr> |
+ <tr><td style="border-top: 11px solid green; border-left: 10px solid purple" colspan="2"></td></tr> |
+ </table> |
+</body> |
+</html> |