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

Unified Diff: LayoutTests/fast/table/table-cell-border-doctype.html

Issue 203473002: Should not render the table cell border if the <td> is empty. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 | LayoutTests/fast/table/table-cell-border-doctype-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/table-cell-border-doctype.html
diff --git a/LayoutTests/fast/table/table-cell-border-doctype.html b/LayoutTests/fast/table/table-cell-border-doctype.html
new file mode 100644
index 0000000000000000000000000000000000000000..d251fb72b07b0e1a0d9c31d8da00ea1960cad170
--- /dev/null
+++ b/LayoutTests/fast/table/table-cell-border-doctype.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ table {
+ border: 1px solid blue;
+ width: 200px;
+ height: 100px;
+ }
+ </style>
+ </head>
+ <body>
+ <table>
+ <tr>
+ <td width="50%" style="border-collapse:collapse;border: 1px solid red;background-color: yellow;"><p></p></td>
+ <td width="50%" style="border-collapse:collapse; border: 1px solid red; "></td>
+ </tr>
+ </table>
+ </body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/table/table-cell-border-doctype-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698