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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/selected-index-value.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 <body> 2 <body>
3 <p>This tests that we can find the selected value of a dropdown when this format is used: [select_name][this.selectedIndex].value. 3 <p>This tests that we can find the selected value of a dropdown when this format is used: [select_name][this.selectedIndex].value.
4 See bug 798404. </p> 4 See bug 798404. </p>
5 5
6 <script> 6 <script>
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 9
10 function test(selected_value) { 10 function test(selected_value) {
(...skipping 19 matching lines...) Expand all
30 var evt = document.createEvent("HTMLEvents"); 30 var evt = document.createEvent("HTMLEvents");
31 evt.initEvent("change", true, true); 31 evt.initEvent("change", true, true);
32 x.dispatchEvent(evt); 32 x.dispatchEvent(evt);
33 </script> 33 </script>
34 34
35 </form> 35 </form>
36 36
37 37
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698