Index: third_party/WebKit/Source/core/css/parser/SizesAttributeParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/SizesAttributeParser.cpp b/third_party/WebKit/Source/core/css/parser/SizesAttributeParser.cpp |
index 1fd01d8c22c159a9f2cf76d84a614c1a3ac864f2..320ed75e100cc470eb12aefee8766ab9f706b82a 100644 |
--- a/third_party/WebKit/Source/core/css/parser/SizesAttributeParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/SizesAttributeParser.cpp |
@@ -60,10 +60,12 @@ bool SizesAttributeParser::mediaConditionMatches( |
} |
bool SizesAttributeParser::parse(CSSParserTokenRange range) { |
- // Split on a comma token and parse the result tokens as (media-condition, length) pairs |
+ // Split on a comma token and parse the result tokens as (media-condition, |
+ // length) pairs |
while (!range.atEnd()) { |
const CSSParserToken* mediaConditionStart = &range.peek(); |
- // The length is the last component value before the comma which isn't whitespace or a comment |
+ // The length is the last component value before the comma which isn't |
+ // whitespace or a comment |
const CSSParserToken* lengthTokenStart = &range.peek(); |
const CSSParserToken* lengthTokenEnd = &range.peek(); |
while (!range.atEnd() && range.peek().type() != CommaToken) { |