diff options
author | Steve Block <steveblock@google.com> | 2012-04-12 07:44:24 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-04-12 07:44:24 -0700 |
commit | 2d59667e270387d6bf950a6cf680ab3fe0912808 (patch) | |
tree | ffbd418bdade008597f9876d54790132013ed1ed /LayoutTests/fast/url/script-tests/standard-url.js | |
parent | 5d30564f8e741f67bddb7075478dc1954b7862f9 (diff) | |
parent | db951b2c4c8fce1304a13d97dec4ae14be629380 (diff) | |
download | external_webkit-2d59667e270387d6bf950a6cf680ab3fe0912808.zip external_webkit-2d59667e270387d6bf950a6cf680ab3fe0912808.tar.gz external_webkit-2d59667e270387d6bf950a6cf680ab3fe0912808.tar.bz2 |
Merge "Cherry-pick WebKit change r84762 to fix URL canonicalization"
Diffstat (limited to 'LayoutTests/fast/url/script-tests/standard-url.js')
-rw-r--r-- | LayoutTests/fast/url/script-tests/standard-url.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/LayoutTests/fast/url/script-tests/standard-url.js b/LayoutTests/fast/url/script-tests/standard-url.js index ef2f7a7..27afe76 100644 --- a/LayoutTests/fast/url/script-tests/standard-url.js +++ b/LayoutTests/fast/url/script-tests/standard-url.js @@ -40,13 +40,24 @@ cases = [ ["https:/example.com/", "https://example.com/"], ["madeupscheme:/example.com/", "madeupscheme:/example.com/"], ["file:/example.com/", "file://localhost/example.com/"], - ["fops:/example.com/", "fops:/example.com/"], + ["ftps:/example.com/", "ftps:/example.com/"], ["gopher:/example.com/", "gopher://example.com/"], ["ws:/example.com/", "ws://example.com/"], ["wss:/example.com/", "wss://example.com/"], ["data:/example.com/", "data:/example.com/"], ["javascript:/example.com/", "javascript:/example.com/"], ["mailto:/example.com/", "mailto:/example.com/"], + ["http:example.com/", "http://example.com/"], + ["ftp:example.com/", "ftp://example.com/"], + ["https:example.com/", "https://example.com/"], + ["madeupscheme:example.com/", "madeupscheme:example.com/"], + ["ftps:example.com/", "ftps:example.com/"], + ["gopher:example.com/", "gopher://example.com/"], + ["ws:example.com/", "ws://example.com/"], + ["wss:example.com/", "wss://example.com/"], + ["data:example.com/", "data:example.com/"], + ["javascript:example.com/", "javascript:example.com/"], + ["mailto:example.com/", "mailto:example.com/"], ]; for (var i = 0; i < cases.length; ++i) { |