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

Side by Side Diff: LayoutTests/fast/forms/select-option-accesskey-crash.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 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <form> 7 <form>
8 <select id="target"> 8 <select id="target">
9 <option accesskey="x">foo</option> 9 <option accesskey="x">foo</option>
10 </select> 10 </select>
(...skipping 13 matching lines...) Expand all
24 if (navigator.userAgent.search(/\bMac OS X\b/) != -1) 24 if (navigator.userAgent.search(/\bMac OS X\b/) != -1)
25 modifiers = ['ctrlKey', 'altKey']; 25 modifiers = ['ctrlKey', 'altKey'];
26 else 26 else
27 modifiers = ['altKey']; 27 modifiers = ['altKey'];
28 28
29 eventSender.keyDown('x', modifiers); 29 eventSender.keyDown('x', modifiers);
30 testPassed("Did not crash"); 30 testPassed("Did not crash");
31 } 31 }
32 } 32 }
33 </script> 33 </script>
34 <script src="../js/resources/js-test-post.js"></script>
35 </body> 34 </body>
36 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/select-multiple-elements-with-mouse-drag.html ('k') | LayoutTests/fast/forms/select-set-length.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698