select-popup-tooltip-test.html 660 B

12345678910111213141516171819
  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. <select size=1>
  13. <option title="This is the first option">option 1</option>
  14. <option title="This is the second option">option 2</option>
  15. <option title="This is the third option">option 3</option>
  16. </select>
  17. </body>
  18. </html>