diff options
Diffstat (limited to 'toolkit/components/satchel/test/subtst_privbrowsing.html')
-rw-r--r-- | toolkit/components/satchel/test/subtst_privbrowsing.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/toolkit/components/satchel/test/subtst_privbrowsing.html b/toolkit/components/satchel/test/subtst_privbrowsing.html new file mode 100644 index 0000000000..a61da1a714 --- /dev/null +++ b/toolkit/components/satchel/test/subtst_privbrowsing.html @@ -0,0 +1,23 @@ +<html> +<head> + <meta charset=UTF-8> + <title>Subtest for bug 472396</title> + <script> + /* exported submitForm */ + function submitForm() { + if (!location.search.includes("field")) { + let form = document.getElementById("form"); + let field = SpecialPowers.wrap(document.getElementById("field")); + field.setUserInput("value"); + form.submit(); + } + } + </script> +</head> +<body onload="submitForm();"> + <h2>Subtest for bug 472396</h2> + <form id="form"> + <input name="field" id="field"> + </form> +</body> +</html> |