diff options
Diffstat (limited to 'Source/WebCore/manual-tests/resources/textarea-form-back-on-submit.html')
-rw-r--r-- | Source/WebCore/manual-tests/resources/textarea-form-back-on-submit.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/WebCore/manual-tests/resources/textarea-form-back-on-submit.html b/Source/WebCore/manual-tests/resources/textarea-form-back-on-submit.html new file mode 100644 index 0000000..2348e2d --- /dev/null +++ b/Source/WebCore/manual-tests/resources/textarea-form-back-on-submit.html @@ -0,0 +1,16 @@ +<html> +<head> +<title>Form with a textarea that goes back on submit</title> +</head> +<body> +<form id="form" method="get" action="data:text/html,<body onload='history.back()'></body>"> + <p> + <textarea name="text" rows="3" cols="10" id="textarea">123</textarea><br /> + <br /> + <input type="submit" /> + <input type="reset" /> + </p> +</form> + +</body> +</html> |