| Index: Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp
|
| index e780214ff5872f2ee53d603785c2062b5520dbe9..0f64e8b04e4e68bc22e4b5e1229ac272f041f273 100644
|
| --- a/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -8163,7 +8163,11 @@ bool CSSPropertyParser::parseSVGValue(CSSPropertyID propId, bool important)
|
| validPrimitive = true;
|
| break;
|
|
|
| - case CSSPropertyImageRendering: // auto | optimizeSpeed |
|
| + case CSSPropertyImageRendering: // auto | optimizeSpeed | pixelated
|
| + if (RuntimeEnabledFeatures::imageRenderingPixelatedEnabled() && id == CSSValuePixelated) {
|
| + validPrimitive = true;
|
| + break;
|
| + }
|
| case CSSPropertyColorRendering: // optimizeQuality | inherit
|
| if (id == CSSValueAuto || id == CSSValueOptimizespeed
|
| || id == CSSValueOptimizequality)
|
|
|