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

Unified Diff: third_party/WebKit/Source/core/paint/TableSectionPainter.h

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
Index: third_party/WebKit/Source/core/paint/TableSectionPainter.h
diff --git a/third_party/WebKit/Source/core/paint/TableSectionPainter.h b/third_party/WebKit/Source/core/paint/TableSectionPainter.h
index 8e2c1f2dea6bb574702d0cdb746de2895ed247d9..04771855d6d9b79656a479d7618d95d983e84c94 100644
--- a/third_party/WebKit/Source/core/paint/TableSectionPainter.h
+++ b/third_party/WebKit/Source/core/paint/TableSectionPainter.h
@@ -12,10 +12,10 @@
namespace blink {
class CellSpan;
-class CollapsedBorderValue;
class LayoutPoint;
class LayoutTableCell;
class LayoutTableSection;
+class TableCollapsedBorderPainter;
struct PaintInfo;
class TableSectionPainter {
@@ -28,7 +28,7 @@ class TableSectionPainter {
void Paint(const PaintInfo&, const LayoutPoint&);
void PaintCollapsedBorders(const PaintInfo&,
const LayoutPoint&,
- const CollapsedBorderValue&);
+ TableCollapsedBorderPainter&);
private:
void PaintObject(const PaintInfo&, const LayoutPoint&);
@@ -46,12 +46,12 @@ class TableSectionPainter {
void PaintRepeatingHeaderGroup(
const PaintInfo&,
const LayoutPoint& paint_offset,
- const CollapsedBorderValue& current_border_value,
+ TableCollapsedBorderPainter& current_border_value,
ItemToPaint);
void PaintSection(const PaintInfo&, const LayoutPoint&);
void PaintCollapsedSectionBorders(const PaintInfo&,
const LayoutPoint&,
- const CollapsedBorderValue&);
+ TableCollapsedBorderPainter&);
const LayoutTableSection& layout_table_section_;
};
« no previous file with comments | « third_party/WebKit/Source/core/paint/TablePainter.cpp ('k') | third_party/WebKit/Source/core/paint/TableSectionPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698