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

Unified Diff: third_party/WebKit/Source/core/paint/TableCellPainter.cpp

Issue 2922343002: Paint table row backgound behind visibility:hidden cell (Closed)
Patch Set: Created 3 years, 6 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 | « third_party/WebKit/LayoutTests/paint/tables/row-background-behind-hidden-cell-expected.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/TableCellPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/TableCellPainter.cpp b/third_party/WebKit/Source/core/paint/TableCellPainter.cpp
index 8895497d1af5330fc9a39ba8e554aea250ab3bc7..4ecad9bd41b55603c7f20469b78a9e76f3009813 100644
--- a/third_party/WebKit/Source/core/paint/TableCellPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/TableCellPainter.cpp
@@ -182,7 +182,7 @@ void TableCellPainter::PaintContainerBackgroundBehindCell(
const LayoutObject& background_object) {
DCHECK(background_object != layout_table_cell_);
- if (layout_table_cell_.Style()->Visibility() != EVisibility::kVisible)
+ if (background_object.Style()->Visibility() != EVisibility::kVisible)
return;
LayoutTable* table = layout_table_cell_.Table();
« no previous file with comments | « third_party/WebKit/LayoutTests/paint/tables/row-background-behind-hidden-cell-expected.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698