summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/url/script-tests/scheme.js
blob: fb5b26bf6533f360755386697446fe45c7881925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
description("Canonicalization of URL schemes.");

cases = [ 
  ["http", "http"],
  ["HTTP", "http"],
  // These tests trigger the relative URL resolving behavior of
  // HTMLAnchorElement.href.  In order to test absolute URL parsing, we'd need
  // an API that always maps to absolute URLs.  If you know of one, please
  // enable these tests!
  // [" HTTP ", "%20http%20"],
  // ["htt: ", "htt%3A%20"],
  // ["\xe4\xbd\xa0\xe5\xa5\xbdhttp", "%E4%BD%A0%E5%A5%BDhttp"],
  // ["ht%3Atp", "ht%3atp"],
];

for (var i = 0; i < cases.length; ++i) {
  test_vector = cases[i][0];
  expected_result = cases[i][1];
  shouldBe("canonicalize('" + test_vector + "://example.com/')",
           "'" + expected_result + "://example.com/'");
}
var successfullyParsed = true;