Index: sky/engine/core/css/parser/CSSPropertyParser.cpp |
diff --git a/sky/engine/core/css/parser/CSSPropertyParser.cpp b/sky/engine/core/css/parser/CSSPropertyParser.cpp |
index c721d628c49b77fba7ce489c41a12730637e641c..5e6e643a77bbc875bafcba26bbb29b5dafa9fbcd 100644 |
--- a/sky/engine/core/css/parser/CSSPropertyParser.cpp |
+++ b/sky/engine/core/css/parser/CSSPropertyParser.cpp |
@@ -2322,7 +2322,7 @@ bool CSSPropertyParser::parseFillProperty(CSSPropertyID propId, CSSPropertyID& p |
m_valueList->next(); |
break; |
case CSSPropertyBackgroundAttachment: |
- if (val->id == CSSValueScroll || val->id == CSSValueFixed || val->id == CSSValueLocal) { |
+ if (val->id == CSSValueFixed || val->id == CSSValueLocal) { |
currValue = cssValuePool().createIdentifierValue(val->id); |
m_valueList->next(); |
} |
@@ -5369,7 +5369,6 @@ PassRefPtr<CSSValue> CSSPropertyParser::parseWillChange() |
case CSSValueInherit: |
return nullptr; |
case CSSValueContents: |
- case CSSValueScrollPosition: |
values->append(cssValuePool().createIdentifierValue(currentValue->id)); |
break; |
default: |