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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/colspan-first-row-wrong-middle-border-quirks-mode.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/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>

Powered by Google App Engine
This is Rietveld 408576698