| Index: src/gurl_unittest.cc
|
| diff --git a/src/gurl_unittest.cc b/src/gurl_unittest.cc
|
| index f62267ff981627833df4ea3e1b5d70361d2e4498..670d2dffaab6246c1495139e42ac8dc23f4a1d18 100644
|
| --- a/src/gurl_unittest.cc
|
| +++ b/src/gurl_unittest.cc
|
| @@ -197,10 +197,9 @@ TEST(GURLTest, Resolve) {
|
| {"http://www.google.com/blah/bloo?c#d", "../../../hello/./world.html?a#b", true, "http://www.google.com/hello/world.html?a#b"},
|
| {"http://www.google.com/foo#bar", "#com", true, "http://www.google.com/foo#com"},
|
| {"http://www.google.com/", "Https:images.google.com", true, "https://images.google.com/"},
|
| - // Unknown schemes are not standard.
|
| + // A non-standard base can be replaced with a standard absolute URL.
|
| {"data:blahblah", "http://google.com/", true, "http://google.com/"},
|
| {"data:blahblah", "http:google.com", true, "http://google.com/"},
|
| - {"data:/blahblah", "file.html", false, ""},
|
| // Filesystem URLs have different paths to test.
|
| {"filesystem:http://www.google.com/type/", "foo.html", true, "filesystem:http://www.google.com/type/foo.html"},
|
| {"filesystem:http://www.google.com/type/", "../foo.html", true, "filesystem:http://www.google.com/type/foo.html"},
|
|
|