| Index: content/browser/indexed_db/indexed_db_browsertest.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_browsertest.cc b/content/browser/indexed_db/indexed_db_browsertest.cc
|
| index c23be28002c4b19dfa49124dee911faa7115f4d0..9a53bc6da052496358f82af15c961aee1f17a104 100644
|
| --- a/content/browser/indexed_db/indexed_db_browsertest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_browsertest.cc
|
| @@ -633,12 +633,14 @@ static scoped_ptr<net::test_server::HttpResponse> CorruptDBRequestHandler(
|
| std::string key = net::UnescapeURLComponent(
|
| escaped_key,
|
| net::UnescapeRule::NORMAL | net::UnescapeRule::SPACES |
|
| - net::UnescapeRule::URL_SPECIAL_CHARS);
|
| + net::UnescapeRule::PATH_SEPARATORS |
|
| + net::UnescapeRule::URL_SPECIAL_CHARS_EXCEPT_PATH_SEPARATORS);
|
|
|
| std::string value = net::UnescapeURLComponent(
|
| escaped_value,
|
| net::UnescapeRule::NORMAL | net::UnescapeRule::SPACES |
|
| - net::UnescapeRule::URL_SPECIAL_CHARS);
|
| + net::UnescapeRule::PATH_SEPARATORS |
|
| + net::UnescapeRule::URL_SPECIAL_CHARS_EXCEPT_PATH_SEPARATORS);
|
|
|
| if (key == "method")
|
| fail_method = value;
|
|
|