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

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

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. 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/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index 1e84756575c119035d72b499d4134428c7249fc2..5aafc6c425974d05737258d9b7694d29a1268e14 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -1480,7 +1480,11 @@ protected:
// Overrides should call the superclass at the start. |oldStyle| will be 0 the first
// time this function is called.
virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle);
- void propagateStyleToAnonymousChildren(bool blockChildrenOnly = false);
+ void propagateStyleToAnonymousChildren();
+ // Return true for objects that don't want style changes automatically propagated via
+ // propagateStyleToAnonymousChildren(), but rather rely on other custom mechanisms (if they
+ // need to be notified of parent style changes at all).
+ virtual bool anonymousHasStylePropagationOverride() { return false; }
protected:
// This function is called before calling the destructor so that some clean-up

Powered by Google App Engine
This is Rietveld 408576698