Changeset 289588 in webkit for trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
- Timestamp:
- Feb 10, 2022, 3:36:55 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r289377 r289588 4435 4435 } 4436 4436 4437 Ref Ptr<CSSValue> ComputedStyleExtractor::getFillLayerPropertyShorthandValue(CSSPropertyID property, const StylePropertyShorthand& propertiesBeforeSlashSeparator, const StylePropertyShorthand& propertiesAfterSlashSeparator, CSSPropertyID lastLayerProperty)4437 Ref<CSSValue> ComputedStyleExtractor::getFillLayerPropertyShorthandValue(CSSPropertyID property, const StylePropertyShorthand& propertiesBeforeSlashSeparator, const StylePropertyShorthand& propertiesAfterSlashSeparator, CSSPropertyID lastLayerProperty) 4438 4438 { 4439 4439 ASSERT(property == CSSPropertyBackground || property == CSSPropertyMask); … … 4483 4483 4484 4484 4485 Ref Ptr<CSSValue> ComputedStyleExtractor::getBackgroundShorthandValue()4485 Ref<CSSValue> ComputedStyleExtractor::getBackgroundShorthandValue() 4486 4486 { 4487 4487 static const CSSPropertyID propertiesBeforeSlashSeparator[] = { CSSPropertyBackgroundImage, CSSPropertyBackgroundRepeat, CSSPropertyBackgroundAttachment, CSSPropertyBackgroundPosition }; … … 4491 4491 } 4492 4492 4493 Ref Ptr<CSSValue> ComputedStyleExtractor::getMaskShorthandValue()4493 Ref<CSSValue> ComputedStyleExtractor::getMaskShorthandValue() 4494 4494 { 4495 4495 static const CSSPropertyID propertiesBeforeSlashSeperator[2] = { CSSPropertyMaskImage, CSSPropertyMaskPosition };
Note:
See TracChangeset
for help on using the changeset viewer.