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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableRow.h

Issue 1819073004: Fix table cell background painting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/layout/LayoutTableRow.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.h b/third_party/WebKit/Source/core/layout/LayoutTableRow.h
index d167a9a147d180d173fd90805e3fa92875209d60..4c99dcd4227f8c62f55e9f6fafd3bbf2fe4a3650 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableRow.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.h
@@ -132,6 +132,9 @@ public:
bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect&, unsigned) const override { return false; }
bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const override { return false; }
+ // Returns section-relative position.
+ LayoutRect positionByCellSpan() const;
Xianzhu 2016/03/28 00:44:42 Please add documentation for this method. I can't
atotic1 2016/03/29 17:05:16 I've renamed positionByCellSpan to "positionForBac
+
private:
LayoutObjectChildList* virtualChildren() override { return children(); }
const LayoutObjectChildList* virtualChildren() const override { return children(); }

Powered by Google App Engine
This is Rietveld 408576698