Chromium Code Reviews

Unified Diff: base/json/string_escape_unittest.cc

Issue 1512013: Improve JsonDoubleQuoteT to do script escapes (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: base/json/string_escape_unittest.cc
===================================================================
--- base/json/string_escape_unittest.cc (revision 43592)
+++ base/json/string_escape_unittest.cc (working copy)
@@ -18,6 +18,7 @@
{"a\b\f\n\r\t\v\1\\.\"z",
"a\\b\\f\\n\\r\\t\\u000B\\u0001\\\\.\\\"z"},
{"b\x0f\x7f\xf0\xff!", "b\\u000F\\u007F\\u00F0\\u00FF!"},
+ {"c<>d", "c\\u003C\\u003Ed"},
};
} // namespace
@@ -62,6 +63,7 @@
{L"a\b\f\n\r\t\v\1\\.\"z",
"a\\b\\f\\n\\r\\t\\u000B\\u0001\\\\.\\\"z"},
{L"b\x0f\x7f\xf0\xff!", "b\\u000F\\u007F\\u00F0\\u00FF!"},
+ {L"c<>d", "c\\u003C\\u003Ed"},
};
} // namespace

Powered by Google App Engine