diff options
Diffstat (limited to 'toolkit/components/satchel/test/subtst_form_submission_1.html')
-rw-r--r-- | toolkit/components/satchel/test/subtst_form_submission_1.html | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/toolkit/components/satchel/test/subtst_form_submission_1.html b/toolkit/components/satchel/test/subtst_form_submission_1.html deleted file mode 100644 index f7441668a..000000000 --- a/toolkit/components/satchel/test/subtst_form_submission_1.html +++ /dev/null @@ -1,38 +0,0 @@ -<!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> |