Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-with-both-borders.html

Issue 2791433003: Fix Border collapsing with colpsan / rowspan cells
Patch Set: bug 2902 Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698