| Index: Source/core/html/HTMLBodyElement.cpp
|
| diff --git a/Source/core/html/HTMLBodyElement.cpp b/Source/core/html/HTMLBodyElement.cpp
|
| index 27d8c55d94a7ad7a7fb3d025b2e28e378ba1a7c9..3b2bddb22b0ca912d499c0ec8c2b0bf1abb0f6a5 100644
|
| --- a/Source/core/html/HTMLBodyElement.cpp
|
| +++ b/Source/core/html/HTMLBodyElement.cpp
|
| @@ -28,7 +28,7 @@
|
| #include "HTMLNames.h"
|
| #include "bindings/v8/ScriptEventListener.h"
|
| #include "core/css/CSSImageValue.h"
|
| -#include "core/css/CSSParser.h"
|
| +#include "core/css/parser/BisonCSSParser.h"
|
| #include "core/css/StylePropertySet.h"
|
| #include "core/dom/Attribute.h"
|
| #include "core/events/ThreadLocalEventNames.h"
|
| @@ -101,7 +101,7 @@ void HTMLBodyElement::parseAttribute(const QualifiedName& name, const AtomicStri
|
| document().textLinkColors().resetActiveLinkColor();
|
| } else {
|
| RGBA32 color;
|
| - if (CSSParser::parseColor(color, value, !document().inQuirksMode())) {
|
| + if (BisonCSSParser::parseColor(color, value, !document().inQuirksMode())) {
|
| if (name == linkAttr)
|
| document().textLinkColors().setLinkColor(color);
|
| else if (name == vlinkAttr)
|
|
|