Changeset 188512 in webkit
- Timestamp:
- Aug 15, 2015, 10:59:05 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r188509 r188512 1 2015-08-14 Simon Fraser <simon.fraser@apple.com> 2 3 Implement parsing for CSS will-change 4 https://bugs.webkit.org/show_bug.cgi?id=148052 5 6 Reviewed by Dean Jackson. 7 8 will-change parsing test. 9 10 * fast/css/will-change-parsing-expected.txt: Added. 11 * fast/css/will-change-parsing.html: Added. 12 1 13 2015-08-14 Alexey Proskuryakov <ap@apple.com> 2 14 -
trunk/Source/WebCore/CMakeLists.txt
r188508 r188512 2507 2507 rendering/style/StyleTransformData.cpp 2508 2508 rendering/style/StyleVisualData.cpp 2509 rendering/style/WillChangeData.cpp 2509 2510 2510 2511 rendering/svg/RenderSVGBlock.cpp -
trunk/Source/WebCore/ChangeLog
r188511 r188512 1 2015-08-14 Simon Fraser <simon.fraser@apple.com> 2 3 Implement parsing for CSS will-change 4 https://bugs.webkit.org/show_bug.cgi?id=148052 5 6 Reviewed by Dean Jackson. 7 8 Syntax is 9 will-change: auto | <animateable-feature># 10 where 11 <animateable-feature> = scroll-position | contents | <custom-ident> 12 13 To support this, add WillChangeData which stores a vector of "feature" 14 and CSS property squished into 16 bits. This is stored in rareNonInheritedData. 15 If null or an empty list, the property value is 'auto'. The list preserves 16 unknown properties. 17 18 Test: fast/css/will-change-parsing.html 19 20 * CMakeLists.txt: 21 * WebCore.vcxproj/WebCore.vcxproj: 22 * WebCore.vcxproj/WebCore.vcxproj.filters: 23 * WebCore.xcodeproj/project.pbxproj: 24 * css/CSSComputedStyleDeclaration.cpp: 25 (WebCore::getWillChangePropertyValue): 26 (WebCore::ComputedStyleExtractor::propertyValue): 27 * css/CSSParser.cpp: 28 (WebCore::CSSParser::parseValue): 29 (WebCore::isValidGridPositionCustomIdent): Renamed from isValidCustomIdent(), 30 since it's grid-specific. 31 (WebCore::CSSParser::parseIntegerOrCustomIdentFromGridPosition): 32 (WebCore::valueIsCSSKeyword): Returns true for the "CSS-wide" keywords like 33 "initial", "inherit" and "default". 34 (WebCore::CSSParser::parseFontFamily): 35 (WebCore::isValidWillChangeAnimatableFeature): 36 (WebCore::CSSParser::parseWillChange): 37 (WebCore::isValidCustomIdent): Deleted. 38 * css/CSSParser.h: 39 * css/CSSPrimitiveValue.h: 40 (WebCore::CSSPrimitiveValue::isPropertyID): New utility function. 41 * css/CSSPropertyNames.in: 42 * css/CSSValueKeywords.in: 43 * css/StyleBuilderCustom.h: 44 (WebCore::StyleBuilderCustom::applyValueWillChange): 45 * rendering/style/RenderStyle.cpp: 46 (WebCore::RenderStyle::setWillChange): 47 * rendering/style/RenderStyle.h: 48 * rendering/style/StyleAllInOne.cpp: 49 * rendering/style/StyleRareNonInheritedData.cpp: 50 (WebCore::StyleRareNonInheritedData::StyleRareNonInheritedData): 51 (WebCore::StyleRareNonInheritedData::operator==): 52 (WebCore::StyleRareNonInheritedData::willChangeDataEquivalent): 53 * rendering/style/StyleRareNonInheritedData.h: 54 * rendering/style/WillChangeData.cpp: Added. 55 (WebCore::WillChangeData::operator==): 56 (WebCore::WillChangeData::containsScrollPosition): 57 (WebCore::WillChangeData::containsContents): 58 (WebCore::WillChangeData::containsProperty): 59 (WebCore::WillChangeData::addFeature): 60 (WebCore::WillChangeData::featureAt): 61 * rendering/style/WillChangeData.h: Added. 62 (WebCore::WillChangeData::create): 63 (WebCore::WillChangeData::operator!=): 64 (WebCore::WillChangeData::isAuto): 65 (WebCore::WillChangeData::numFeatures): 66 (WebCore::WillChangeData::WillChangeData): 67 (WebCore::WillChangeData::AnimatableFeature::feature): 68 (WebCore::WillChangeData::AnimatableFeature::property): 69 (WebCore::WillChangeData::AnimatableFeature::featurePropertyPair): 70 (WebCore::WillChangeData::AnimatableFeature::AnimatableFeature): 71 (WebCore::WillChangeData::AnimatableFeature::operator==): 72 1 73 2015-08-15 Wenson Hsieh <wenson_hsieh@apple.com> 2 74 -
trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj
r188508 r188512 13027 13027 </ClCompile> 13028 13028 <ClCompile Include="..\rendering\style\StyleVisualData.cpp"> 13029 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> 13030 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> 13031 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild> 13032 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|x64'">true</ExcludedFromBuild> 13033 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild> 13034 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|x64'">true</ExcludedFromBuild> 13035 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> 13036 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> 13037 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild> 13038 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild> 13039 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild> 13040 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild> 13041 </ClCompile> 13042 <ClCompile Include="..\rendering\style\WillChangeData.cpp"> 13029 13043 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> 13030 13044 <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> … … 21920 21934 <ClInclude Include="..\rendering\style\StyleVariableData.h" /> 21921 21935 <ClInclude Include="..\rendering\style\StyleVisualData.h" /> 21936 <ClInclude Include="..\rendering\style\WillChangeData.h" /> 21922 21937 <ClInclude Include="..\rendering\style\SVGRenderStyle.h" /> 21923 21938 <ClInclude Include="..\rendering\style\SVGRenderStyleDefs.h" /> -
trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters
r188329 r188512 2824 2824 <Filter>rendering\style</Filter> 2825 2825 </ClCompile> 2826 <ClCompile Include="..\rendering\style\WillChangeData.cpp"> 2827 <Filter>rendering\style</Filter> 2828 </ClCompile> 2826 2829 <ClCompile Include="..\rendering\style\SVGRenderStyle.cpp"> 2827 2830 <Filter>rendering\style</Filter> … … 9889 9892 </ClInclude> 9890 9893 <ClInclude Include="..\rendering\style\StyleVisualData.h"> 9894 <Filter>rendering\style</Filter> 9895 </ClInclude> 9896 <ClInclude Include="..\rendering\style\WillChangeData.h"> 9891 9897 <Filter>rendering\style</Filter> 9892 9898 </ClInclude> -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r188508 r188512 470 470 0F13164016ED0CDE0035CC04 /* PlatformCAFiltersCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F13163F16ED0CDE0035CC04 /* PlatformCAFiltersCocoa.mm */; }; 471 471 0F15DA8A0F3AAEE70000CE47 /* AnimationControllerPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F15DA890F3AAEE70000CE47 /* AnimationControllerPrivate.h */; }; 472 0F15ED5B1B7EC7C500EDDFEB /* WillChangeData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F15ED591B7EC7C500EDDFEB /* WillChangeData.cpp */; }; 473 0F15ED5C1B7EC7C500EDDFEB /* WillChangeData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F15ED5A1B7EC7C500EDDFEB /* WillChangeData.h */; settings = {ATTRIBUTES = (Private, ); }; }; 472 474 0F1774801378B772009DA76A /* ScrollAnimatorIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F17747E1378B771009DA76A /* ScrollAnimatorIOS.h */; }; 473 475 0F1774811378B772009DA76A /* ScrollAnimatorIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F17747F1378B772009DA76A /* ScrollAnimatorIOS.mm */; }; … … 7606 7608 0F13163F16ED0CDE0035CC04 /* PlatformCAFiltersCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlatformCAFiltersCocoa.mm; sourceTree = "<group>"; }; 7607 7609 0F15DA890F3AAEE70000CE47 /* AnimationControllerPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationControllerPrivate.h; sourceTree = "<group>"; }; 7610 0F15ED591B7EC7C500EDDFEB /* WillChangeData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WillChangeData.cpp; sourceTree = "<group>"; }; 7611 0F15ED5A1B7EC7C500EDDFEB /* WillChangeData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WillChangeData.h; sourceTree = "<group>"; }; 7608 7612 0F17747E1378B771009DA76A /* ScrollAnimatorIOS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScrollAnimatorIOS.h; sourceTree = "<group>"; }; 7609 7613 0F17747F1378B772009DA76A /* ScrollAnimatorIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ScrollAnimatorIOS.mm; sourceTree = "<group>"; }; … … 21686 21690 BC2274770E8366E200E7F975 /* SVGRenderStyleDefs.h */, 21687 21691 448B1B780F3A2F9B0047A9E2 /* TextSizeAdjustment.h */, 21692 0F15ED591B7EC7C500EDDFEB /* WillChangeData.cpp */, 21693 0F15ED5A1B7EC7C500EDDFEB /* WillChangeData.h */, 21688 21694 ); 21689 21695 path = style; … … 25641 25647 31078CCA1880AACE008099DC /* JSOESTextureHalfFloatLinear.h in Headers */, 25642 25648 77A17AA712F28B2A004E02F6 /* JSOESVertexArrayObject.h in Headers */, 25649 0F15ED5C1B7EC7C500EDDFEB /* WillChangeData.h in Headers */, 25643 25650 FDF6BAF9134A4C9800822920 /* JSOfflineAudioCompletionEvent.h in Headers */, 25644 25651 FDA9326716703BA9008982DC /* JSOfflineAudioContext.h in Headers */, … … 29406 29413 B2FA3DAE0AB75A6F000E5AC4 /* JSSVGMetadataElement.cpp in Sources */, 29407 29414 B27B28290CEF0C0700D39D54 /* JSSVGMissingGlyphElement.cpp in Sources */, 29415 0F15ED5B1B7EC7C500EDDFEB /* WillChangeData.cpp in Sources */, 29408 29416 4496E3A2139813CB003EE32A /* JSSVGMPathElement.cpp in Sources */, 29409 29417 8542A7980AE5C94300DF58DF /* JSSVGNumber.cpp in Sources */, -
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r188315 r188512 68 68 #include "WebKitCSSTransformValue.h" 69 69 #include "WebKitFontFamilyNames.h" 70 #include "WillChangeData.h" 70 71 #include <wtf/NeverDestroyed.h> 71 72 #include <wtf/text/StringBuilder.h> … … 1162 1163 #endif 1163 1164 1165 static Ref<CSSValue> getWillChangePropertyValue(const WillChangeData* willChangeData) 1166 { 1167 if (!willChangeData || !willChangeData->numFeatures()) 1168 return cssValuePool().createIdentifierValue(CSSValueAuto); 1169 1170 auto list = CSSValueList::createCommaSeparated(); 1171 for (size_t i = 0; i < willChangeData->numFeatures(); ++i) { 1172 WillChangeData::FeaturePropertyPair feature = willChangeData->featureAt(i); 1173 switch (feature.first) { 1174 case WillChangeData::ScrollPosition: 1175 list.get().append(cssValuePool().createIdentifierValue(CSSValueScrollPosition)); 1176 break; 1177 case WillChangeData::Contents: 1178 list.get().append(cssValuePool().createIdentifierValue(CSSValueContents)); 1179 break; 1180 case WillChangeData::Property: 1181 list.get().append(cssValuePool().createIdentifierValue(feature.second)); 1182 break; 1183 case WillChangeData::Invalid: 1184 ASSERT_NOT_REACHED(); 1185 break; 1186 } 1187 } 1188 1189 return WTF::move(list); 1190 } 1191 1164 1192 static Ref<CSSValueList> getDelayValue(const AnimationList* animList) 1165 1193 { … … 2651 2679 } 2652 2680 return zoomAdjustedPixelValueForLength(style->width(), *style); 2681 case CSSPropertyWillChange: 2682 return getWillChangePropertyValue(style->willChange()); 2683 break; 2653 2684 case CSSPropertyWordBreak: 2654 2685 return cssValuePool().createValue(style->wordBreak()); -
trunk/Source/WebCore/css/CSSParser.cpp
r188315 r188512 2798 2798 // End of CSS3 properties 2799 2799 2800 case CSSPropertyWillChange: // auto | [scroll-position | contents | <custom-ident>]# 2801 if (id == CSSValueAuto) 2802 validPrimitive = true; 2803 else 2804 return parseWillChange(important); 2805 break; 2806 2800 2807 // Apple specific properties. These will never be standardized and are purely to 2801 2808 // support custom WebKit-based Apple applications. … … 5230 5237 5231 5238 #if ENABLE(CSS_GRID_LAYOUT) 5232 static inline bool isValid CustomIdent(const CSSParserValue& value)5239 static inline bool isValidGridPositionCustomIdent(const CSSParserValue& value) 5233 5240 { 5234 5241 return value.unit == CSSPrimitiveValue::CSS_IDENT && value.id != CSSValueSpan && value.id != CSSValueAuto; … … 5242 5249 numericValue = createPrimitiveNumericValue(valueWithCalculation); 5243 5250 CSSParserValue* nextValue = m_valueList->next(); 5244 if (nextValue && isValid CustomIdent(*nextValue)) {5251 if (nextValue && isValidGridPositionCustomIdent(*nextValue)) { 5245 5252 gridLineName = createPrimitiveStringValue(*nextValue); 5246 5253 m_valueList->next(); … … 5249 5256 } 5250 5257 5251 if (isValid CustomIdent(valueWithCalculation)) {5258 if (isValidGridPositionCustomIdent(valueWithCalculation)) { 5252 5259 gridLineName = createPrimitiveStringValue(valueWithCalculation); 5253 5260 if (CSSParserValue* nextValue = m_valueList->next()) { … … 6686 6693 }; 6687 6694 6695 static bool valueIsCSSKeyword(const CSSParserValue& value) 6696 { 6697 // FIXME: when we add "unset", we should handle it here. 6698 return value.id == CSSValueInitial || value.id == CSSValueInherit || value.id == CSSValueDefault; 6699 } 6700 6688 6701 RefPtr<CSSValueList> CSSParser::parseFontFamily() 6689 6702 { … … 6702 6715 (nextValue->unit == CSSPrimitiveValue::CSS_STRING || nextValue->unit == CSSPrimitiveValue::CSS_IDENT)); 6703 6716 6704 bool valueIsKeyword = value ->id == CSSValueInitial || value->id == CSSValueInherit || value->id == CSSValueDefault;6717 bool valueIsKeyword = valueIsCSSKeyword(*value); 6705 6718 if (valueIsKeyword && !inFamily) { 6706 6719 if (nextValBreaksFont) … … 10463 10476 } 10464 10477 10478 static inline bool isValidWillChangeAnimatableFeature(const CSSParserValue& value) 10479 { 10480 if (value.id == CSSValueNone || value.id == CSSValueAuto || value.id == CSSValueAll) 10481 return false; 10482 10483 if (valueIsCSSKeyword(value)) 10484 return false; 10485 10486 if (cssPropertyID(value.string) == CSSPropertyWillChange) 10487 return false; 10488 10489 return true; 10490 } 10491 10492 bool CSSParser::parseWillChange(bool important) 10493 { 10494 RefPtr<CSSValueList> willChangePropertyValues = CSSValueList::createCommaSeparated(); 10495 10496 bool expectComma = false; 10497 for (CSSParserValue* value = m_valueList->current(); value; value = m_valueList->next()) { 10498 if (expectComma) { 10499 if (!isComma(value)) 10500 return false; 10501 10502 expectComma = false; 10503 continue; 10504 } 10505 10506 if (value->unit != CSSPrimitiveValue::CSS_IDENT) 10507 return false; 10508 10509 if (!isValidWillChangeAnimatableFeature(*value)) 10510 return false; 10511 10512 RefPtr<CSSValue> cssValue; 10513 if (value->id == CSSValueScrollPosition || value->id == CSSValueContents) 10514 cssValue = cssValuePool().createIdentifierValue(value->id); 10515 else { 10516 CSSPropertyID propertyID = cssPropertyID(value->string); 10517 if (propertyID != CSSPropertyInvalid) 10518 cssValue = cssValuePool().createIdentifierValue(propertyID); 10519 else // This might be a property we don't support. 10520 cssValue = createPrimitiveStringValue(*value); 10521 } 10522 10523 willChangePropertyValues->append(cssValue.releaseNonNull()); 10524 expectComma = true; 10525 } 10526 10527 addProperty(CSSPropertyWillChange, willChangePropertyValues.release(), important); 10528 return true; 10529 } 10530 10465 10531 RefPtr<CSSCalcValue> CSSParser::parseCalculation(CSSParserValue& value, CalculationPermittedValueRange range) 10466 10532 { -
trunk/Source/WebCore/css/CSSParser.h
r188315 r188512 346 346 bool parseFontVariantLigatures(bool important); 347 347 348 bool parseWillChange(bool important); 349 348 350 // Faster than doing a new/delete each time since it keeps one vector. 349 351 std::unique_ptr<Vector<std::unique_ptr<CSSParserSelector>>> createSelectorVector(); -
trunk/Source/WebCore/css/CSSPrimitiveValue.h
r188315 r188512 207 207 bool isLengthRepeat() const { return m_primitiveUnitType == CSS_LENGTH_REPEAT; } 208 208 #endif 209 bool isPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID; } 209 210 bool isRGBColor() const { return m_primitiveUnitType == CSS_RGBCOLOR; } 210 211 bool isShape() const { return m_primitiveUnitType == CSS_SHAPE; } -
trunk/Source/WebCore/css/CSSPropertyNames.in
r188202 r188512 351 351 widows [Inherited, AutoFunctions] 352 352 width [Initial=initialSize, Converter=LengthSizing] 353 will-change [Custom=Value] 353 354 word-break [Inherited] 354 355 -epub-word-break = word-break -
trunk/Source/WebCore/css/CSSValueKeywords.in
r188202 r188512 1128 1128 weight 1129 1129 style 1130 1131 // will-change 1132 scroll-position 1133 contents -
trunk/Source/WebCore/css/StyleBuilderCustom.h
r187626 r188512 49 49 #include "StyleGeneratedImage.h" 50 50 #include "StyleResolver.h" 51 #include "WillChangeData.h" 51 52 52 53 namespace WebCore { … … 134 135 static void applyInheritWebkitScrollSnapPointsY(StyleResolver&); 135 136 #endif 137 static void applyValueWillChange(StyleResolver&, CSSValue&); 136 138 137 139 private: … … 1718 1720 #endif 1719 1721 1722 inline void StyleBuilderCustom::applyValueWillChange(StyleResolver& styleResolver, CSSValue& value) 1723 { 1724 if (is<CSSPrimitiveValue>(value)) { 1725 ASSERT(downcast<CSSPrimitiveValue>(value).getValueID() == CSSValueAuto); 1726 styleResolver.style()->setWillChange(nullptr); 1727 return; 1728 } 1729 1730 Ref<WillChangeData> willChange = WillChangeData::create(); 1731 for (auto& item : downcast<CSSValueList>(value)) { 1732 if (!is<CSSPrimitiveValue>(item.get())) 1733 continue; 1734 1735 const auto& primitiveValue = downcast<CSSPrimitiveValue>(item.get()); 1736 switch (primitiveValue.getValueID()) { 1737 case CSSValueScrollPosition: 1738 willChange->addFeature(WillChangeData::Feature::ScrollPosition); 1739 break; 1740 case CSSValueContents: 1741 willChange->addFeature(WillChangeData::Feature::Contents); 1742 break; 1743 default: 1744 if (primitiveValue.isPropertyID()) 1745 willChange->addFeature(WillChangeData::Feature::Property, primitiveValue.getPropertyID()); 1746 break; 1747 } 1748 } 1749 1750 styleResolver.style()->setWillChange(WTF::move(willChange)); 1751 } 1752 1720 1753 } // namespace WebCore 1721 1754 -
trunk/Source/WebCore/rendering/style/RenderStyle.cpp
r187626 r188512 41 41 #include "StyleScrollSnapPoints.h" 42 42 #include "StyleSelfAlignmentData.h" 43 #include "WillChangeData.h" 43 44 #include <wtf/MathExtras.h> 44 45 #include <wtf/StdLibExtras.h> … … 926 927 } 927 928 929 void RenderStyle::setWillChange(PassRefPtr<WillChangeData> willChangeData) 930 { 931 if (rareNonInheritedData->m_willChange == willChangeData 932 || (rareNonInheritedData->m_willChange && willChangeData && *rareNonInheritedData->m_willChange == *willChangeData)) 933 return; 934 935 rareNonInheritedData.access()->m_willChange = WTF::move(willChangeData); 936 } 937 928 938 void RenderStyle::clearCursorList() 929 939 { -
trunk/Source/WebCore/rendering/style/RenderStyle.h
r188202 r188512 114 114 class StyleResolver; 115 115 class TransformationMatrix; 116 class WillChangeData; 116 117 117 118 struct ScrollSnapPoints; … … 1779 1780 ClipPathOperation* clipPath() const { return rareNonInheritedData->m_clipPath.get(); } 1780 1781 1781 static ClipPathOperation* initialClipPath() { return 0; }1782 static ClipPathOperation* initialClipPath() { return nullptr; } 1782 1783 1783 1784 bool hasContent() const { return contentData(); } … … 1798 1799 QuotesData* quotes() const { return rareInheritedData->quotes.get(); } 1799 1800 void setQuotes(PassRefPtr<QuotesData>); 1801 1802 WillChangeData* willChange() const { return rareNonInheritedData->m_willChange.get(); } 1803 void setWillChange(PassRefPtr<WillChangeData>); 1800 1804 1801 1805 const AtomicString& hyphenString() const; … … 2004 2008 static const AtomicString& initialContentAltText() { return emptyAtom; } 2005 2009 2010 static WillChangeData* initialWillChange() { return nullptr; } 2011 2006 2012 #if ENABLE(CSS_SCROLL_SNAP) 2007 2013 static ScrollSnapType initialScrollSnapType() { return ScrollSnapType::None; } -
trunk/Source/WebCore/rendering/style/StyleAllInOne.cpp
r186528 r188512 58 58 #include "StyleTransformData.cpp" 59 59 #include "StyleVisualData.cpp" 60 #include "WillChangeData.cpp" -
trunk/Source/WebCore/rendering/style/StyleRareNonInheritedData.cpp
r183805 r188512 60 60 , m_scrollSnapPoints(StyleScrollSnapPoints::create()) 61 61 #endif 62 , m_willChange(RenderStyle::initialWillChange()) 62 63 , m_mask(FillLayer(MaskFillLayer)) 63 , m_pageSize()64 64 #if ENABLE(CSS_SHAPES) 65 65 , m_shapeOutside(RenderStyle::initialShapeOutside()) … … 137 137 , m_altText(o.m_altText) 138 138 , m_boxShadow(o.m_boxShadow ? std::make_unique<ShadowData>(*o.m_boxShadow) : nullptr) 139 , m_willChange(o.m_willChange) 139 140 , m_boxReflect(o.m_boxReflect) 140 141 , m_animations(o.m_animations ? std::make_unique<AnimationList>(*o.m_animations) : nullptr) … … 235 236 && counterDataEquivalent(o) 236 237 && shadowDataEquivalent(o) 238 && willChangeDataEquivalent(o) 237 239 && reflectionDataEquivalent(o) 238 240 && animationDataEquivalent(o) … … 246 248 && m_shapeImageThreshold == o.m_shapeImageThreshold 247 249 #endif 248 && m_clipPath == o.m_clipPath 250 && m_clipPath == o.m_clipPath // FIXME: This needs to compare values. 249 251 && m_textDecorationColor == o.m_textDecorationColor 250 252 && m_visitedLinkTextDecorationColor == o.m_visitedLinkTextDecorationColor … … 324 326 } 325 327 328 bool StyleRareNonInheritedData::willChangeDataEquivalent(const StyleRareNonInheritedData& o) const 329 { 330 if (m_willChange != o.m_willChange) { 331 if (!m_willChange || !o.m_willChange) 332 return false; 333 return *m_willChange == *o.m_willChange; 334 } 335 return true; 336 } 337 326 338 bool StyleRareNonInheritedData::reflectionDataEquivalent(const StyleRareNonInheritedData& o) const 327 339 { -
trunk/Source/WebCore/rendering/style/StyleRareNonInheritedData.h
r183805 r188512 27 27 28 28 #include "BasicShapes.h" 29 #include "CSSPropertyNames.h" 29 30 #include "ClipPathOperation.h" 30 31 #include "CounterDirectives.h" … … 37 38 #include "StyleContentAlignmentData.h" 38 39 #include "StyleSelfAlignmentData.h" 40 #include "WillChangeData.h" 39 41 #include <memory> 40 42 #include <wtf/PassRefPtr.h> … … 93 95 bool counterDataEquivalent(const StyleRareNonInheritedData&) const; 94 96 bool shadowDataEquivalent(const StyleRareNonInheritedData&) const; 97 bool willChangeDataEquivalent(const StyleRareNonInheritedData&) const; 95 98 bool reflectionDataEquivalent(const StyleRareNonInheritedData&) const; 96 99 bool animationDataEquivalent(const StyleRareNonInheritedData&) const; … … 145 148 146 149 std::unique_ptr<ShadowData> m_boxShadow; // For box-shadow decorations. 150 151 RefPtr<WillChangeData> m_willChange; // Null indicates 'auto'. 147 152 148 153 RefPtr<StyleReflection> m_boxReflect;
Note:
See TracChangeset
for help on using the changeset viewer.