Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
index 54b6566a729ab2b0e9239cb1ceeab910c457e7f1..440f7a27eb0488ebc422b53e32fe0e7751c1b68f 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
@@ -313,12 +313,12 @@ void LayoutTableRow::AddOverflowFromCell(const LayoutTableCell* cell) { |
LayoutSize cell_row_offset = cell->Location() - Location(); |
LayoutRect cell_visual_overflow_rect = |
- cell->VisualOverflowRectForPropagation(StyleRef()); |
+ cell->VisualOverflowRectForPropagation(); |
cell_visual_overflow_rect.Move(cell_row_offset); |
AddContentsVisualOverflow(cell_visual_overflow_rect); |
LayoutRect cell_layout_overflow_rect = |
- cell->LayoutOverflowRectForPropagation(StyleRef()); |
+ cell->LayoutOverflowRectForPropagation(); |
cell_layout_overflow_rect.Move(cell_row_offset); |
AddLayoutOverflow(cell_layout_overflow_rect); |
} |