summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/security/dangling-markup/option.html
blob: f528bed999b4edb969948122bc3a64ab6429bfd7 (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
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./resources/helper.js"></script>
<body>
<script>

  var tests = [
    `
      <form action="/resource-timing/resources/document-navigated.html" method="post">
        <input type="submit">
        <select name="dangling"><option>
    `,
    `
      <div>
        <form action="/resource-timing/resources/document-navigated.html" method="post">
          <input type="submit">
          <select name="dangling"><option>
    `,
    `
      <form action="/resource-timing/resources/document-navigated.html" method="post" id="form">
        <input type="submit">
      </form>
      <select name="dangling" form="form"><option>
    `,
    `
      <form action="/resource-timing/resources/document-navigated.html" method="post">
        <input type="submit">
        <select name="dangling"><option label="yay">
    `,
    `
      <div>
        <form action="/resource-timing/resources/document-navigated.html" method="post">
          <input type="submit">
          <select name="dangling"><option label="yay">
    `,
    `
      <form action="/resource-timing/resources/document-navigated.html" method="post" id="form">
        <input type="submit">
      </form>
      <select name="dangling" form="form"><option label="yay">
    `
  ];

  tests.forEach(markup => {
    async_test(t => {
      var i = createFrame(`${markup}sekrit<element attribute></element>`);
      assert_no_submission(t, i);
    }, markup.replace(/[\n\r]/g, ''));
  });
</script>