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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/select-double-onchange.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 <html> 1 <html>
2 <head> 2 <head>
3 <title></title> 3 <title></title>
4 <script type="text/javascript"> 4 <script type="text/javascript">
5 var onchangeCount = 0; 5 var onchangeCount = 0;
6 6
7 function test() 7 function test()
8 { 8 {
9 if (!window.eventSender) 9 if (!window.eventSender)
10 return; 10 return;
(...skipping 24 matching lines...) Expand all
35 </p> 35 </p>
36 <p id="result"> 36 <p id="result">
37 To test interactively, select the other option in the pop up. This t ext should change to SUCCESS. 37 To test interactively, select the other option in the pop up. This t ext should change to SUCCESS.
38 </p> 38 </p>
39 <select name="switcher" id="switcher" onchange="changed(this)"> 39 <select name="switcher" id="switcher" onchange="changed(this)">
40 <option value="one">One</option> 40 <option value="one">One</option>
41 <option value="two">Two</option> 41 <option value="two">Two</option>
42 </select> 42 </select>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698