summaryrefslogtreecommitdiffstats
path: root/toolkit/components/satchel/test/subtst_form_submission_1.html
blob: f7441668a1c86222a5e7211e331caae0f9dea9f8 (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
<!DOCTYPE HTML>
<html>

<head>
</head>

<body>

<form id="subform1" onsubmit="return checkSubmit(21)">
  <input id="subtest1" type="text" name="subtest1">
  <button type="submit">Submit</button>
</form>

<form id="subform2" onsubmit="return checkSubmit(100)">
  <input id="subtest2" type="text" name="subtest2">
  <button type="submit">Submit</button>
</form>

<script>
  function checkSubmit(num) {
    netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
    return parent.checkSubmit(num);
  }

  function clickButton(num) {
    if (num == 21)
      document.querySelectorAll("button")[0].click();
    else if (num == 100)
      document.querySelectorAll("button")[1].click();
  }

  // set the input's value (can't use a default value, as satchel will ignore it)
  document.getElementById("subtest1").value = "subtestValue";
  document.getElementById("subtest2").value = "subtestValue";
</script>

</body>
</html>