select-popup-on-spacebar.html 966 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2. "http://www.w3.org/TR/html4/strict.dtd">
  3. <html>
  4. <head>
  5. </head>
  6. <body onload="document.getElementById('selectId').focus()">
  7. <p><b>BUG ID:<a href="https://bugs.webkit.org/show_bug.cgi?id=18363">18363</a>.</p>
  8. <p id="description">
  9. This test ensures that pressing spacebar on Mac, Gtk and Chromium ports or pressing
  10. return in Gtk and Chromium ports will popup the select control when focused.
  11. </p>
  12. <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br>
  13. Press <em>spacebar</em> or the <em>return</em> key (Gtk only).
  14. <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b>
  15. Select pops up the menu list</p>
  16. <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
  17. Select does not popup a menu list - nothing happens.</p>
  18. <select id="selectId">
  19. <option>Select</option>
  20. <option>Item 1</option>
  21. </select>
  22. </body>
  23. </html>