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

Unified Diff: Source/core/css/parser/CSSParserIdioms.h

Issue 171383002: A thread-safe Media Query Parser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Moar rebase Created 6 years, 9 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/CSSParserIdioms.h
diff --git a/Source/core/css/parser/CSSParserIdioms.h b/Source/core/css/parser/CSSParserIdioms.h
index d0e0b241397a174872fdec4631e29f3a9d9619b5..4217d0a43682a9d7e8e3c376e7b622e50c398f75 100644
--- a/Source/core/css/parser/CSSParserIdioms.h
+++ b/Source/core/css/parser/CSSParserIdioms.h
@@ -36,7 +36,7 @@
namespace WebCore {
// Space characters as defined by the CSS specification.
-// http://www.w3.org/TR/css3-syntax/
+// http://www.w3.org/TR/css3-syntax/#whitespace
inline bool isCSSSpace(UChar c)
{
return c == ' ' || c == '\t' || c == '\n';

Powered by Google App Engine
This is Rietveld 408576698