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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp

Issue 2398013002: Reflow comments in core/css/parser (Closed)
Patch Set: Removed weird border-style comment Created 4 years, 2 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: 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) {

Powered by Google App Engine
This is Rietveld 408576698