forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 2
/
test_bug429347.js
42 lines (34 loc) · 1.36 KB
/
test_bug429347.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cr = Components.results;
function run_test() {
var ios = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
var uri1 = ios.newURI("http://example.com#bar", null, null);
var uri2 = ios.newURI("http://example.com/#bar", null, null);
do_check_true(uri1.equals(uri2));
uri1.spec = "http://example.com?bar";
uri2.spec = "http://example.com/?bar";
do_check_true(uri1.equals(uri2));
// see https://bugzilla.mozilla.org/show_bug.cgi?id=665706
// ";" is not parsed as special anymore and thus ends up
// in the authority component (see RFC 3986)
uri1.spec = "http://example.com;bar";
uri2.spec = "http://example.com/;bar";
do_check_false(uri1.equals(uri2));
uri1.spec = "http://example.com#";
uri2.spec = "http://example.com/#";
do_check_true(uri1.equals(uri2));
uri1.spec = "http://example.com?";
uri2.spec = "http://example.com/?";
do_check_true(uri1.equals(uri2));
// see https://bugzilla.mozilla.org/show_bug.cgi?id=665706
// ";" is not parsed as special anymore and thus ends up
// in the authority component (see RFC 3986)
uri1.spec = "http://example.com;";
uri2.spec = "http://example.com/;";
do_check_false(uri1.equals(uri2));
uri1.spec = "http://example.com";
uri2.spec = "http://example.com/";
do_check_true(uri1.equals(uri2));
}