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")); |
} |