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

Side by Side Diff: LayoutTests/fast/forms/selection-start-end-readonly.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <p id="description"></p> 8 <p id="description"></p>
9 <input id="text" readonly="readonly" value="2009-04-29"/><br/> 9 <input id="text" readonly="readonly" value="2009-04-29"/><br/>
10 <textarea id="area" readonly="readonly">2009-04-29</textarea></div> 10 <textarea id="area" readonly="readonly">2009-04-29</textarea></div>
(...skipping 23 matching lines...) Expand all
34 function testHandler(element) { 34 function testHandler(element) {
35 var offsets = [[0, 10], [0, 9], [1, 10], [5,5], [8,5], [-1,0], [-1,50]]; 35 var offsets = [[0, 10], [0, 9], [1, 10], [5,5], [8,5], [-1,0], [-1,50]];
36 for (var i = 0; i < offsets.length; i++) 36 for (var i = 0; i < offsets.length; i++)
37 startTest(element, offsets[i][0], offsets[i][1]); 37 startTest(element, offsets[i][0], offsets[i][1]);
38 } 38 }
39 39
40 testHandler(document.getElementById('text')); 40 testHandler(document.getElementById('text'));
41 testHandler(document.getElementById('area')); 41 testHandler(document.getElementById('area'));
42 42
43 </script> 43 </script>
44 <script src="../js/resources/js-test-post.js"></script>
45 </body> 44 </body>
46 </html> 45 </html>
47 46
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/selection-direction.html ('k') | LayoutTests/fast/forms/selection-wrongtype.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698