Lines Matching refs:url
7 function bURL(url, base) {
10 a.setAttribute("href", url);
38 var url = bURL(expected.input, base)
40 if(url.protocol !== ':') {
43 assert_equals(url.href, expected.input, "failure should set href to input")
47 assert_equals(url.href, expected.href, "href")
48 assert_equals(url.protocol, expected.protocol, "protocol")
49 assert_equals(url.username, expected.username, "username")
50 assert_equals(url.password, expected.password, "password")
51 assert_equals(url.host, expected.host, "host")
52 assert_equals(url.hostname, expected.hostname, "hostname")
53 assert_equals(url.port, expected.port, "port")
54 assert_equals(url.pathname, expected.pathname, "pathname")
55 assert_equals(url.search, expected.search, "search")
56 assert_equals(url.hash, expected.hash, "hash")