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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/wrong-border-middle-colspan.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/wrong-border-middle-colspan.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/border-collapsing/wrong-border-middle-colspan.html b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/wrong-border-middle-colspan.html
new file mode 100644
index 0000000000000000000000000000000000000000..e5f716250347debe78e0552cb7255fe0ea8c4fc5
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/wrong-border-middle-colspan.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+table {
+ border-collapse: collapse;
+ border-spacing: 0px;
+}
+td {
+ padding: 0px;
+ width: 50px;
+ height: 50px;
+}
+</style>
+</head>
+<body>
+<table>
+ <tr>
+ <td style="border-bottom: 2px solid #0f0;"></td>
+ <td><!-- There should be no border under this cell for this test to pass. --></td>
+ <td style="border-bottom: 2px solid #00f;"></td>
+ </tr>
+ <tr>
+ <td colspan="3" style="border-bottom: 2px solid #f00;"></td>
+ </tr>
+</table>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698