| Index: Source/core/css/CSSStyleRule.cpp
|
| diff --git a/Source/core/css/CSSStyleRule.cpp b/Source/core/css/CSSStyleRule.cpp
|
| index 1ab4c5203a43e030b4b87d20cd0cb07f5a98dbf0..7fd4f9f46d345a2ec1c6f9267393c6e4c3563397 100644
|
| --- a/Source/core/css/CSSStyleRule.cpp
|
| +++ b/Source/core/css/CSSStyleRule.cpp
|
| @@ -22,7 +22,7 @@
|
| #include "config.h"
|
| #include "core/css/CSSStyleRule.h"
|
|
|
| -#include "core/css/CSSParser.h"
|
| +#include "core/css/parser/BisonCSSParser.h"
|
| #include "core/css/CSSSelector.h"
|
| #include "core/css/CSSStyleSheet.h"
|
| #include "core/css/PropertySetCSSStyleDeclaration.h"
|
| @@ -91,7 +91,7 @@ String CSSStyleRule::selectorText() const
|
|
|
| void CSSStyleRule::setSelectorText(const String& selectorText)
|
| {
|
| - CSSParser p(parserContext());
|
| + BisonCSSParser p(parserContext());
|
| CSSSelectorList selectorList;
|
| p.parseSelector(selectorText, selectorList);
|
| if (!selectorList.isValid())
|
|
|