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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select-listbox-multiple-no-focusring.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
(Empty)
1 <!DOCTYPE html>
2 <body>
3
4 <select id="multiselect" multiple="multiple">
5 <option>make-the-item-long-enough-to-make-a-difference-in-pixel-test</option >
6 <option>b</option>
7 </select>
8
9 <script>
10 var multiselect = document.getElementById('multiselect');
11
12 if (window.eventSender) {
13 eventSender.mouseMoveTo(multiselect.offsetLeft + 5, multiselect.offsetTop + 5);
14 eventSender.mouseDown();
15 eventSender.mouseUp();
16 } else {
17 document.write("To manually test, click on the 'a' option and no focus ring on the selected item should be seen.");
18 }
19 </script>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698