| Index: Source/core/html/shadow/HTMLContentElement.cpp
|
| diff --git a/Source/core/html/shadow/HTMLContentElement.cpp b/Source/core/html/shadow/HTMLContentElement.cpp
|
| index 81691295e85a8639528c752891b90079cc28dde4..df21ad5df56908058a3204fba97f41b45261fbfc 100644
|
| --- a/Source/core/html/shadow/HTMLContentElement.cpp
|
| +++ b/Source/core/html/shadow/HTMLContentElement.cpp
|
| @@ -28,7 +28,7 @@
|
| #include "core/html/shadow/HTMLContentElement.h"
|
|
|
| #include "HTMLNames.h"
|
| -#include "core/css/CSSParser.h"
|
| +#include "core/css/parser/BisonCSSParser.h"
|
| #include "core/css/SelectorChecker.h"
|
| #include "core/css/SiblingTraversalStrategies.h"
|
| #include "core/dom/QualifiedName.h"
|
| @@ -60,7 +60,7 @@ void HTMLContentElement::parseSelect()
|
| {
|
| ASSERT(m_shouldParseSelect);
|
|
|
| - CSSParser parser(document());
|
| + BisonCSSParser parser(document());
|
| parser.parseSelector(m_select, m_selectorList);
|
| m_shouldParseSelect = false;
|
| m_isValidSelector = validateSelect();
|
|
|