Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-setvalue-submit.html

Issue 1524663002: Move textarea-related tests to fast/forms/textarea/, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698