Index: third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp |
index 2ac772f7556716a66238dbe9a7d92f87a52c0a8b..eb3ec21bceb99775b85afa79c5f24c7758152216 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp |
@@ -79,7 +79,8 @@ static inline void filterProperties( |
size_t& unusedEntries, |
std::bitset<numCSSProperties>& seenProperties, |
HashSet<AtomicString>& seenCustomProperties) { |
- // Add properties in reverse order so that highest priority definitions are reached first. Duplicate definitions can then be ignored when found. |
+ // Add properties in reverse order so that highest priority definitions are |
+ // reached first. Duplicate definitions can then be ignored when found. |
for (size_t i = input.size(); i--;) { |
const CSSProperty& property = input[i]; |
if (property.isImportant() != important) |
@@ -429,7 +430,8 @@ StyleRuleBase* CSSParserImpl::consumeAtRule(CSSParserTokenRange& range, |
if (allowedRules == KeyframeRules) |
return nullptr; // Parse error, no at-rules supported inside @keyframes |
if (allowedRules == NoRules || allowedRules == ApplyRules) |
- return nullptr; // Parse error, no at-rules with blocks supported inside declaration lists |
+ return nullptr; // Parse error, no at-rules with blocks supported inside |
+ // declaration lists |
ASSERT(allowedRules <= RegularRules); |
@@ -645,7 +647,8 @@ StyleRuleKeyframes* CSSParserImpl::consumeKeyframesRule( |
CSSParserTokenRange rangeCopy = prelude; // For inspector callbacks |
const CSSParserToken& nameToken = prelude.consumeIncludingWhitespace(); |
if (!prelude.atEnd()) |
- return nullptr; // Parse error; expected single non-whitespace token in @keyframes header |
+ return nullptr; // Parse error; expected single non-whitespace token in |
+ // @keyframes header |
String name; |
if (nameToken.type() == IdentToken) { |