Changeset 156608 in webkit for trunk/Source/WebCore/rendering/RenderObject.h
- Timestamp:
- Sep 28, 2013, 11:30:16 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderObject.h
r156527 r156608 760 760 761 761 RenderStyle* style() const; 762 RenderStyle* firstLineStyle() const { return document().styleSheetCollection().usesFirstLineRules() ? cachedFirstLineStyle() : style(); } 763 RenderStyle* style(bool firstLine) const { return firstLine ? firstLineStyle() : style(); } 764 765 // Used only by Element::pseudoStyleCacheIsInvalid to get a first line style based off of a 766 // given new style, without accessing the cache. 767 PassRefPtr<RenderStyle> uncachedFirstLineStyle(RenderStyle*) const; 762 RenderStyle* firstLineStyle() const; 768 763 769 764 // Anonymous blocks that are part of of a continuation chain will return their inline continuation's outline style instead. … … 971 966 void removeFromRenderFlowThread(); 972 967 void removeFromRenderFlowThreadRecursive(RenderFlowThread*); 973 974 RenderStyle* cachedFirstLineStyle() const;975 968 976 969 Color selectionColor(int colorProperty) const;
Note:
See TracChangeset
for help on using the changeset viewer.