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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/select-change-popup-to-listbox-in-event-handler.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (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 <!DOCTYPE> 1 <!DOCTYPE>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Change popup to list inside mouse event handler.</title> 4 <title>Change popup to list inside mouse event handler.</title>
5 <script type="text/javascript" charset="utf-8"> 5 <script type="text/javascript" charset="utf-8">
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 8
9 function sendClick() 9 function sendClick()
10 { 10 {
(...skipping 12 matching lines...) Expand all
23 </head> 23 </head>
24 <body> 24 <body>
25 <p>This test should not crash.</p> 25 <p>This test should not crash.</p>
26 <select id="select" onFocus="this.size = 10"> 26 <select id="select" onFocus="this.size = 10">
27 <option value="0">One</option> 27 <option value="0">One</option>
28 <option value="1">Two</option> 28 <option value="1">Two</option>
29 <option value="2">Three</option> 29 <option value="2">Three</option>
30 </select> 30 </select>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698