1 <!DOCTYPE html><!-- webkit-test-runner [ rtlScrollbars=true ] -->
5 <body style="margin: 0px;">
6 <div style="position: absolute; left: 8px; top: 200px;">This test makes sure that cliking on the rightmost part of an item causes it to be selected.</div>
7 <select id="container" multiple="multiple" style="margin: 0px; border: 0px solid black; padding: 0px; width: 200px;">
8 <option id="january">January</option>
9 <option>February</option>
10 <option>March</option>
11 <option>April</option>
15 <option>August</option>
16 <option>September</option>
17 <option>October</option>
18 <option>November</option>
19 <option>December</option>
22 var container = document.getElementById("container");
24 var january = document.getElementById("january");
25 january.selected = true;