| Index: Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp
|
| index fd64d241ac4e05c296a83059710bb52da4c8305d..e0b740f6e03ce13eb03a386b1d1b7434656ed079 100644
|
| --- a/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -469,15 +469,11 @@
|
| return false;
|
| addExpandedPropertyForValue(propId, cssValuePool().createInheritedValue(), important);
|
| return true;
|
| - } else if (id == CSSValueInitial) {
|
| + }
|
| + else if (id == CSSValueInitial) {
|
| if (num != 1)
|
| return false;
|
| addExpandedPropertyForValue(propId, cssValuePool().createExplicitInitialValue(), important);
|
| - return true;
|
| - } else if (id == CSSValueUnset) {
|
| - if (num != 1)
|
| - return false;
|
| - addExpandedPropertyForValue(propId, cssValuePool().createUnsetValue(), important);
|
| return true;
|
| }
|
|
|
|
|