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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.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/CSSTokenizerTest.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp b/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp
index 45442b38532e822d5071f6e260d2569b0fa1d630..c5e5730312d80f2b1aee195a36a389444e9f9203 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp
@@ -280,7 +280,8 @@ TEST(CSSTokenizerTest, FunctionToken) {
TEST_TOKENS("url(\"foo.gif\"", function("url"), string("foo.gif"));
TEST_TOKENS("foo( \'bar.gif\'", function("foo"), whitespace(),
string("bar.gif"));
- // To simplify implementation we drop the whitespace in function(url),whitespace,string()
+ // To simplify implementation we drop the whitespace in
+ // function(url),whitespace,string()
TEST_TOKENS("url( \'bar.gif\'", function("url"), string("bar.gif"));
}

Powered by Google App Engine
This is Rietveld 408576698