Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Unified Diff: Source/core/css/parser/CSSParser.cpp

Issue 1232593004: Don't resolve extended color keywords during parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test expectations fixups. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/css/parser/CSSParser.cpp
diff --git a/Source/core/css/parser/CSSParser.cpp b/Source/core/css/parser/CSSParser.cpp
index 42b855aa97fd8e96d2e2cc55aac5edde0b105d44..1ed4f6ff4b16226713cc35101729b79803ce6642 100644
--- a/Source/core/css/parser/CSSParser.cpp
+++ b/Source/core/css/parser/CSSParser.cpp
@@ -112,7 +112,7 @@ bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
if (string.isEmpty())
return false;
- // The regular color parsers don't resolve all named colors, so explicitly
+ // The regular color parsers don't resolve named colors, so explicitly
// handle these first.
Color namedColor;
if (namedColor.setNamedColor(string)) {

Powered by Google App Engine
This is Rietveld 408576698