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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/adjacent-cell-and-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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-hidden-vs-red.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/table/border-collapsing/adjacent-cell-and-colspan.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/border-collapsing/adjacent-cell-and-colspan.html b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/adjacent-cell-and-colspan.html
new file mode 100644
index 0000000000000000000000000000000000000000..127de5e9257a252c6f33e9762d5b2ed5e3395996
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/border-collapsing/adjacent-cell-and-colspan.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<style>
+td { min-width: 20px; height: 20px; background: silver; border: thick solid black; }
+.border { border-bottom-color: red; }
+</style>
+<table>
+ <tr>
+ <td class=border></td>
+ <td></td>
+ <tr>
+ <td colspan=2></td>
+</table>
+
+<br>
+
+<table style=border-collapse:collapse;>
+ <tr>
+ <td class=border></td>
+ <td></td>
+ <tr>
+ <td colspan=2></td>
+</table>
+
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-hidden-vs-red.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698