| Index: Source/core/css/StyleSheetContents.cpp
|
| diff --git a/Source/core/css/StyleSheetContents.cpp b/Source/core/css/StyleSheetContents.cpp
|
| index 2e4a24d1cdd0b40c02ba79f926977dc9a8781c06..5a6e6f281cec86fd9b88108e690fbf1a1c6cf501 100644
|
| --- a/Source/core/css/StyleSheetContents.cpp
|
| +++ b/Source/core/css/StyleSheetContents.cpp
|
| @@ -293,7 +293,7 @@ void StyleSheetContents::parseAuthorStyleSheet(const CSSStyleSheetResource* cach
|
| }
|
|
|
| CSSParserContext context(parserContext(), UseCounter::getFrom(this));
|
| - CSSParser::parseSheet(context, this, sheetText, nullptr);
|
| + CSSParser::parseSheet(context, this, sheetText);
|
| }
|
|
|
| void StyleSheetContents::parseString(const String& sheetText)
|
| @@ -304,7 +304,7 @@ void StyleSheetContents::parseString(const String& sheetText)
|
| void StyleSheetContents::parseStringAtPosition(const String& sheetText, const TextPosition& startPosition)
|
| {
|
| CSSParserContext context(parserContext(), UseCounter::getFrom(this));
|
| - CSSParser::parseSheet(context, this, sheetText, 0);
|
| + CSSParser::parseSheet(context, this, sheetText);
|
| }
|
|
|
| bool StyleSheetContents::isLoading() const
|
|
|