1<!DOCTYPE html> 2<html> 3<body> 4<h3> Test tool tip is correctly shown when popup select is displayed.</h3> 5<ol> 6<li>Click the following select tag.</li> 7<li> Move mouse cursor on "option 1" and stop moving.</li> 8<li> After seconds, make sure you can see tool tip text "This is the first option".</li> 9<li> Move mouse cursor on "option 2" and stop moving.</li> 10<li> Make sure you can see tool tip text "This is the second option".</li> 11</ol> 12 13<select size=1> 14<option title="This is the first option">option 1</option> 15<option title="This is the second option">option 2</option> 16<option title="This is the third option">option 3</option> 17</select> 18</body> 19</html> 20