Index: Source/core/editing/EditingStyle.cpp |
diff --git a/Source/core/editing/EditingStyle.cpp b/Source/core/editing/EditingStyle.cpp |
index 62bcb4341fb7757daa519e048fe3431c1187782e..58403965f7ecd85681d17539231285fc8daa631a 100644 |
--- a/Source/core/editing/EditingStyle.cpp |
+++ b/Source/core/editing/EditingStyle.cpp |
@@ -38,7 +38,7 @@ |
#include "core/css/FontSize.h" |
#include "core/css/StylePropertySet.h" |
#include "core/css/StyleRule.h" |
-#include "core/css/parser/CSSParser.h" |
+#include "core/css/parser/BisonCSSParser.h" |
#include "core/css/resolver/StyleResolver.h" |
#include "core/dom/Document.h" |
#include "core/dom/Element.h" |
@@ -396,8 +396,7 @@ |
return primitiveColor->getRGBA32Value(); |
RGBA32 rgba = 0; |
- // FIXME: Why ignore the return value? |
- CSSParser::parseColor(rgba, colorValue->cssText()); |
+ BisonCSSParser::parseColor(rgba, colorValue->cssText()); |
return rgba; |
} |