Lines Matching refs:url
7 function bURL(url, base) { argument
11 a.setAttribute("href", url)
21 var url = bURL(expected.input, expected.base)
23 if(url.protocol !== ':') {
26 assert_equals(url.href, expected.input, "failure should set href to input")
30 assert_equals(url.href, expected.href, "href")
31 assert_equals(url.protocol, expected.protocol, "protocol")
32 assert_equals(url.username, expected.username, "username")
33 assert_equals(url.password, expected.password, "password")
34 assert_equals(url.host, expected.host, "host")
35 assert_equals(url.hostname, expected.hostname, "hostname")
36 assert_equals(url.port, expected.port, "port")
37 assert_equals(url.pathname, expected.pathname, "pathname")
38 assert_equals(url.search, expected.search, "search")
39 assert_equals(url.hash, expected.hash, "hash")