File: location-protocol-setter-non-broken.html

package info (click to toggle)
firefox 144.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,637,504 kB
  • sloc: cpp: 7,576,692; javascript: 6,430,831; ansic: 3,748,119; python: 1,398,978; xml: 628,810; asm: 438,679; java: 186,194; sh: 63,212; makefile: 19,159; objc: 13,086; perl: 12,986; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (63 lines) | stat: -rw-r--r-- 2,199 bytes parent folder | download | duplicates (20)
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
56
57
58
59
60
61
62
63
<!doctype html>
<title>Set location.protocol to a non-broken-non-functioning scheme</title>
<!-- In particular, valid non-broken schemes that are nevertheless not going to work -->
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
self.onload = () => {
  [
    'x',
    'data',
    // 'mailto' opens an email client in Chrome and Firefox and then ends up passing anyway...
    'file',
    'ftp',
    'http+x'
  ].forEach((val) => {
    async_test((t) => {
      // HTTP URL <iframe>
      const frame = document.createElement("iframe")
      t.add_cleanup(() => frame.remove())
      frame.src = "/common/blank.html"
      frame.onload = t.step_func(() => {
        frame.contentWindow.location.protocol = val
        t.step_timeout(() => {
          assert_equals(frame.contentWindow.location.protocol, location.protocol)
          assert_equals(frame.contentWindow.location.host, location.host)
          assert_equals(frame.contentWindow.location.port, location.port)
          t.done()
          // Matches the timeout from location-protocol-setter-non-broken-weird.html which suggests
          // that 4 seconds is enough for a navigation to complete.
        }, 4000)
      })
      document.body.appendChild(frame)
    }, "Set HTTP URL frame location.protocol to " + val)

    async_test((t) => {
      // data URL <iframe>
      const dataFrame = document.createElement("iframe")
      t.add_cleanup(() => dataFrame.remove())
      const channel = new MessageChannel()
      dataFrame.src = `data:text/html,<script>
onmessage = (e) => {
  let result = false;
  try {
    location.protocol = e.data
  } catch(e) {
    result = true
  }
  setTimeout(() => e.ports[0].postMessage([result, location.protocol]), 4000)
}
<\/script>`
      dataFrame.onload = t.step_func(() => {
        dataFrame.contentWindow.postMessage(val, "*", [channel.port2])
      })
      channel.port1.onmessage = t.step_func_done((e) => {
        assert_false(e.data[0])
        assert_equals(e.data[1], "data:")
      })
      document.body.appendChild(dataFrame)
    }, "Set data URL frame location.protocol to " + val)
  })
}
</script>