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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-hidden-vs-red.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-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>

Powered by Google App Engine
This is Rietveld 408576698