select-narrow-width.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <html>
  2. <head>
  3. Select narrow width manual test.
  4. </head>
  5. <body>
  6. See bug:<a href="https://bugs.webkit.org/show_bug.cgi?id=25904">25904</a>.
  7. <p>
  8. This test ensures that items in a select control can be selected. There
  9. was a bug in Mac Chromium where select controls did not initialize their
  10. widths properly, and while a click on the control would display the popup,
  11. subsequent clicks on menu items were disregarded.
  12. <p>
  13. The bug was most easily reproduced with select controls containing many
  14. (more than 20) items that had narrow widths.
  15. <br>
  16. <select id="selectId">
  17. <option>a</option>
  18. <option>b</option>
  19. <option>c</option>
  20. <option>d</option>
  21. <option>e</option>
  22. <option>f</option>
  23. <option>g</option>
  24. <option>h</option>
  25. <option>i</option>
  26. <option>j</option>
  27. <option>k</option>
  28. <option>l</option>
  29. <option>m</option>
  30. <option>n</option>
  31. <option>o</option>
  32. <option>p</option>
  33. <option>q</option>
  34. <option>r</option>
  35. <option>s</option>
  36. <option>t</option>
  37. <option>u</option>
  38. <option>v</option>
  39. <option>w</option>
  40. <option>x</option>
  41. <option>y</option>
  42. <option>z</option>
  43. </select>
  44. </body>
  45. </html>