OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> | 3 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> |
4 <title>Charsets and submitting forms</title> | 4 <title>Charsets and submitting forms</title> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <form name="f" method="?" action="textarea-setvalue-submit.html"> | 7 <form name="f" method="?" action="textarea-setvalue-submit.html"> |
8 <textarea id="textarea1" name="textarea1">default value</textarea> | 8 <textarea id="textarea1" name="textarea1">default value</textarea> |
9 <textarea id="textarea2" name="textarea2" style="display:none">default value</te
xtarea> | 9 <textarea id="textarea2" name="textarea2" style="display:none">default value</te
xtarea> |
10 </form> | 10 </form> |
(...skipping 21 matching lines...) Expand all Loading... |
32 else | 32 else |
33 document.write("Failure. The value set in the textarea via javascript w
asn't sent when the form was submitted. Expected: " + expected + ", Found: " +
formData); | 33 document.write("Failure. The value set in the textarea via javascript w
asn't sent when the form was submitted. Expected: " + expected + ", Found: " +
formData); |
34 | 34 |
35 if (window.testRunner) | 35 if (window.testRunner) |
36 window.testRunner.notifyDone(); | 36 window.testRunner.notifyDone(); |
37 } | 37 } |
38 | 38 |
39 </script> | 39 </script> |
40 </body> | 40 </body> |
41 </html> | 41 </html> |
OLD | NEW |