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

Unified Diff: third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row.html

Issue 2783953002: Fix spanning cell painting background from wrong row (Closed)
Patch Set: Remove non-const version and use faster implementation Created 3 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 | third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row.html
diff --git a/third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row.html b/third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row.html
new file mode 100644
index 0000000000000000000000000000000000000000..703bf6bb4bb9940eaf3149168ae2eadbb99aaf41
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<style>td { width: 50px; height: 50px; padding: 0 }</style>
+<div style="overflow: hidden; width: 100px; height: 100px">
+ <table style="margin-top: -80px; border-spacing: 0">
+ <tr style="background: blue">
+ <td rowspan="3"></td>
+ <td></td>
+ </tr>
+ <tr style="background: yellow">
+ <td></td>
+ </tr>
+ <tr style="background: yellow">
+ <td></td>
+ </tr>
+ </table>
+</div>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/tables/row-span-visible-from-second-row-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698