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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-default-value-leading-newline.html

Issue 1522803002: Move textarea-related tests to fast/forms/textarea/, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@color-uaf
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 <script type="text/javascript"> 3 <script type="text/javascript">
4 function print(message) 4 function print(message)
5 { 5 {
6 var paragraph = document.createElement("li"); 6 var paragraph = document.createElement("li");
7 paragraph.appendChild(document.createTextNode(message)); 7 paragraph.appendChild(document.createTextNode(message));
8 document.getElementById("console").appendChild(paragraph); 8 document.getElementById("console").appendChild(paragraph);
9 } 9 }
10 function test() 10 function test()
(...skipping 24 matching lines...) Expand all
35 <p>This test attempts to set a leading newline in a text area's default value.</p> 35 <p>This test attempts to set a leading newline in a text area's default value.</p>
36 <p>If the test passes, you should see a 3 lines saying "Passed" below.</ p> 36 <p>If the test passes, you should see a 3 lines saying "Passed" below.</ p>
37 <hr> 37 <hr>
38 <form> 38 <form>
39 <textarea id="text"></textarea> 39 <textarea id="text"></textarea>
40 </form> 40 </form>
41 <hr> 41 <hr>
42 <p><ol id="console"></ol></p> 42 <p><ol id="console"></ol></p>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698