| Index: sky/engine/core/dom/SelectorQuery.cpp
|
| diff --git a/sky/engine/core/dom/SelectorQuery.cpp b/sky/engine/core/dom/SelectorQuery.cpp
|
| index 6b0da930b199cc54cc148e5f324dde1aea89df3a..574fb989ed56992ced80cfaf18e5803ee7d6e34f 100644
|
| --- a/sky/engine/core/dom/SelectorQuery.cpp
|
| +++ b/sky/engine/core/dom/SelectorQuery.cpp
|
| @@ -87,7 +87,8 @@ SelectorQuery* SelectorQueryCache::add(const AtomicString& selectors, const Docu
|
| if (it != m_entries.end())
|
| return it->value.get();
|
|
|
| - BisonCSSParser parser(CSSParserContext(document, 0));
|
| + CSSParserContext context(document);
|
| + BisonCSSParser parser(context);
|
| CSSSelectorList selectorList;
|
| parser.parseSelector(selectors, selectorList);
|
|
|
|
|