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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-arrow-navigation.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> 3 <script>
4 4
5 function log(str) 5 function log(str)
6 { 6 {
7 var li = document.createElement("li"); 7 var li = document.createElement("li");
8 li.appendChild(document.createTextNode(str)); 8 li.appendChild(document.createTextNode(str));
9 var console = document.getElementById("console"); 9 var console = document.getElementById("console");
10 console.appendChild(li); 10 console.appendChild(li);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 1. 49 1.
50 2. 50 2.
51 3. 51 3.
52 52
53 What is the expected output? What do you see instead?</textarea> 53 What is the expected output? What do you see instead?</textarea>
54 54
55 <ul id="console"></ul> 55 <ul id="console"></ul>
56 56
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698