| Index: sky/engine/core/rendering/style/RenderStyle.h
|
| diff --git a/sky/engine/core/rendering/style/RenderStyle.h b/sky/engine/core/rendering/style/RenderStyle.h
|
| index e490e4d86a7863945cfc5afebec105a0e5719491..9cb4c58d8f9bf015c8f811ff6c043d82740f75da 100644
|
| --- a/sky/engine/core/rendering/style/RenderStyle.h
|
| +++ b/sky/engine/core/rendering/style/RenderStyle.h
|
| @@ -795,14 +795,6 @@ public:
|
| const FilterOperations& filter() const { return rareNonInheritedData->m_filter->m_operations; }
|
| bool hasFilter() const { return !rareNonInheritedData->m_filter->m_operations.operations().isEmpty(); }
|
|
|
| - WebBlendMode blendMode() const;
|
| - void setBlendMode(WebBlendMode v);
|
| - bool hasBlendMode() const;
|
| -
|
| - EIsolation isolation() const;
|
| - void setIsolation(EIsolation v);
|
| - bool hasIsolation() const;
|
| -
|
| bool shouldPlaceBlockDirectionScrollbarOnLogicalLeft() const { return !isLeftToRightDirection(); }
|
|
|
| TouchAction touchAction() const { return static_cast<TouchAction>(rareNonInheritedData->m_touchAction); }
|
| @@ -1379,8 +1371,6 @@ public:
|
| static LineClampValue initialLineClamp() { return LineClampValue(); }
|
| static Color initialTapHighlightColor();
|
| static const FilterOperations& initialFilter() { DEFINE_STATIC_LOCAL(FilterOperations, ops, ()); return ops; }
|
| - static WebBlendMode initialBlendMode() { return WebBlendModeNormal; }
|
| - static EIsolation initialIsolation() { return IsolationAuto; }
|
|
|
| Color colorIncludingFallback(int colorProperty) const;
|
|
|
|
|