summaryrefslogtreecommitdiff
path: root/test/fixtures/wpt/url/failure.html
blob: 67873ea2115738285a74861149d9939352f7429f (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<meta charset=utf-8>
<title>Test URL parser failure consistency</title>
<meta name=timeout content=long>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
promise_test(() => fetch("resources/urltestdata.json").then(res => res.json()).then(runTests), "Loading data…")

function runTests(testData) {
  for(const test of testData) {
    if (typeof test === "string" || !test.failure || test.base !== "about:blank") {
      continue
    }

    const name = test.input + " should throw"

    self.test(() => { // URL's constructor's first argument is tested by url-constructor.html
      // If a URL fails to parse with any valid base, it must also fail to parse with no base, i.e.
      // when used as a base URL itself.
      assert_throws_js(TypeError, () => new URL("about:blank", test.input));
    }, "URL's constructor's base argument: " + name)

    self.test(() => {
      const url = new URL("about:blank")
      assert_throws_js(TypeError, () => url.href = test.input)
    }, "URL's href: " + name)

    // The following use cases resolve the URL input relative to the current
    // document's URL. If this test input could be construed as a valid URL
    // when resolved against a base URL, skip these cases.
    if (!test.inputCanBeRelative) {
      self.test(() => {
        const client = new XMLHttpRequest()
        assert_throws_dom("SyntaxError", () => client.open("GET", test.input))
      }, "XHR: " + name)

      self.test(() => {
        assert_throws_js(TypeError, () => self.navigator.sendBeacon(test.input))
      }, "sendBeacon(): " + name)

      self.test(t => {
        const frame = document.body.appendChild(document.createElement("iframe"));
        t.add_cleanup(() => frame.remove());
        assert_throws_dom("SyntaxError", frame.contentWindow.DOMException, () => frame.contentWindow.location = test.input);
      }, "Location's href: " + name);

      self.test(() => {
        assert_throws_dom("SyntaxError", () => self.open(test.input).close())
      }, "window.open(): " + name)
    }
  }
}
</script>