Index: Source/core/html/HTMLBodyElement.cpp |
diff --git a/Source/core/html/HTMLBodyElement.cpp b/Source/core/html/HTMLBodyElement.cpp |
index 3b2bddb22b0ca912d499c0ec8c2b0bf1abb0f6a5..8dac5270012402f78a7b98883f30689568728739 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/parser/BisonCSSParser.h" |
+#include "core/css/parser/CSSParser.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 (BisonCSSParser::parseColor(color, value, !document().inQuirksMode())) { |
+ if (CSSParser::parseColor(color, value, !document().inQuirksMode())) { |
if (name == linkAttr) |
document().textLinkColors().setLinkColor(color); |
else if (name == vlinkAttr) |