Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTable.cpp

Issue 2000683002: Keep writing-mode in sync between a column spanner and its placeholder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: There should no longer be any need for LayoutTable to propagateStyleToAnonymousChildren(), since La… Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
index 536b32ef819000a1f87db6d235d995250a823719..6febb8197d75b049dc4d25fa852f59efa1fa805f 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
@@ -76,7 +76,6 @@ LayoutTable::~LayoutTable()
void LayoutTable::styleDidChange(StyleDifference diff, const ComputedStyle* oldStyle)
{
LayoutBlock::styleDidChange(diff, oldStyle);
- propagateStyleToAnonymousChildren();
bool oldFixedTableLayout = oldStyle ? oldStyle->isFixedTableLayout() : false;

Powered by Google App Engine