| Index: third_party/WebKit/Source/core/dom/SelectorQueryTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/SelectorQueryTest.cpp b/third_party/WebKit/Source/core/dom/SelectorQueryTest.cpp
|
| index 7c82d08268d3d0989ffb9ffd8d13fb2bcb1ce532..a2836978e4a58ade1379a26a6fb64acc848270b4 100644
|
| --- a/third_party/WebKit/Source/core/dom/SelectorQueryTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/SelectorQueryTest.cpp
|
| @@ -21,7 +21,9 @@ TEST(SelectorQueryTest, NotMatchingPseudoElement) {
|
| ASSERT_NO_EXCEPTION);
|
|
|
| CSSSelectorList selectorList = CSSParser::parseSelector(
|
| - CSSParserContext(*document, nullptr), nullptr, "span::before");
|
| + CSSParserContext(*document, nullptr, KURL(), emptyString(),
|
| + CSSParserContext::StaticProfile),
|
| + nullptr, "span::before");
|
| std::unique_ptr<SelectorQuery> query =
|
| SelectorQuery::adopt(std::move(selectorList));
|
| Element* elm = query->queryFirst(*document);
|
|
|