1<html> 2<body> 3 <ol> 4 <li>Maximize window.</li> 5 <li>Click on left menu and make sure whole menu (all of the entries should be completely visible) appears on screen against the left edge of the screen.</li> 6 <li>Click on right menuand make sure whole menu (all of the entries should be completely visible) appears on screen against the right edge of the screen.</li> 7 </ol> 8 <select id="left-select-over" style="margin-left:-50px;"> 9 <option value="first">First</option> 10 <option value="second">Second</option> 11 <option value="third">Third</option> 12 <option value="fourth">Fourth</option> 13 </select> 14 <select id="right-select-over" style="float:right; margin-right:-50px;"> 15 <option value="first">First</option> 16 <option value="second">Second</option> 17 <option value="third">Third</option> 18 <option value="fourth">Fourth</option> 19 </select> 20</body> 21<html> 22 23