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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/listbox-selection.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 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="../../resources/js-test.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <div id="parent"> 7 <div id="parent">
8 <select id="sl16" multiple size=5> 8 <select id="sl16" multiple size=5>
9 <option>a</option> 9 <option>a</option>
10 <option>b</option> 10 <option>b</option>
11 <option>c</option> 11 <option>c</option>
12 <option>d</option> 12 <option>d</option>
13 <option>e</option> 13 <option>e</option>
14 </select> 14 </select>
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 157
158 debug("16) Active-selection after type-ahead"); 158 debug("16) Active-selection after type-ahead");
159 shouldBeEqualToString("mouseClickOnSelect('sl16', 1); selectionPattern('sl16')", "01000"); 159 shouldBeEqualToString("mouseClickOnSelect('sl16', 1); selectionPattern('sl16')", "01000");
160 shouldBeEqualToString("keyDownOnSelect('sl16', 'e'); selectionPattern('sl16')", "00001"); 160 shouldBeEqualToString("keyDownOnSelect('sl16', 'e'); selectionPattern('sl16')", "00001");
161 shouldBeEqualToString("keyDownOnSelect('sl16', 'upArrow', 'rangeSelectionKey'); selectionPattern('sl16')", "00011"); 161 shouldBeEqualToString("keyDownOnSelect('sl16', 'upArrow', 'rangeSelectionKey'); selectionPattern('sl16')", "00011");
162 162
163 document.getElementById("parent").remove(); 163 document.getElementById("parent").remove();
164 </script> 164 </script>
165 </body> 165 </body>
166 </html> 166 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698