Index: net/base/escape_unittest.cc |
=================================================================== |
--- net/base/escape_unittest.cc (revision 43305) |
+++ net/base/escape_unittest.cc (working copy) |
@@ -238,6 +238,10 @@ |
{L"Hello%20%13%10world %23# %3F? %3D= %26& %25% %2B+", |
UnescapeRule::URL_SPECIAL_CHARS, |
L"Hello%20%13%10world ## ?? == && %% ++"}, |
+ // We can neither escape nor unescape '@' since some websites expect it to |
+ // be preserved as either '@' or "%40". |
+ // See http://b/996720 and http://crbug.com/23933 . |
+ {L"me@my%40example", UnescapeRule::NORMAL, L"me@my%40example"}, |
// Control characters. |
{L"%01%02%03%04%05%06%07%08%09 %25", UnescapeRule::URL_SPECIAL_CHARS, |
L"%01%02%03%04%05%06%07%08%09 %"}, |