| Index: third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
|
| diff --git a/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp b/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
|
| index 272bce98e760a2bb01ec9e68a5ec78c0c20b4372..f703e4c3b3c1600f2f820a771d9cffd276317727 100644
|
| --- a/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
|
| +++ b/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
|
| @@ -392,7 +392,7 @@ void BaseRenderingContext2D::setFilter(const String& filterString)
|
| if (filterString == state().unparsedFilter())
|
| return;
|
|
|
| - CSSValue* filterValue = CSSParser::parseSingleValue(CSSPropertyFilter, filterString, CSSParserContext(HTMLStandardMode, 0));
|
| + CSSValue* filterValue = CSSParser::parseSingleValue(CSSPropertyFilter, filterString, CSSParserContext(HTMLStandardMode, nullptr));
|
|
|
| if (!filterValue || filterValue->isInitialValue() || filterValue->isInheritedValue())
|
| return;
|
|
|