Index: Source/core/css/parser/CSSTokenizerTest.cpp |
diff --git a/Source/core/css/parser/CSSTokenizerTest.cpp b/Source/core/css/parser/CSSTokenizerTest.cpp |
index 34cccd684094fd01d08ccd0bad8e9c68e93f23d7..4b3956b76e44621d5c304afa320779ea2ce157a0 100644 |
--- a/Source/core/css/parser/CSSTokenizerTest.cpp |
+++ b/Source/core/css/parser/CSSTokenizerTest.cpp |
@@ -62,6 +62,10 @@ TEST(CSSTokenizerTest, Basic) |
{ "5.", "5'.'" }, |
{ "5.0e-1", "0.500000" }, |
{ "5.e-1", "5'.'e-1" }, |
+ { "hel\\6co", "hello" }, |
+ { "wor\\6c d", "world" }, |
+ { "wor\\6c\r\nd", "world" }, |
+ { "wor\\6c\n\rd", "worl d" }, |
Yoav Weiss
2014/10/20 07:42:07
Can you add tests for '\f' and '\t' as well?
Timothy Loh
2014/10/20 13:05:15
Done.
|
{ 0, 0 } // Do not remove the terminator line. |
}; |