[Webkit-unassigned] [Bug 171803] New: [GTK] Type ahead find for <option> elements inside an <optgroup> does not work in popup

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 8 06:03:36 PDT 2017


https://bugs.webkit.org/show_bug.cgi?id=171803

            Bug ID: 171803
           Summary: [GTK] Type ahead find for <option> elements inside an
                    <optgroup> does not work in popup
           Product: WebKit
           Version: Other
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: aperez at igalia.com
                CC: bugs-noreply at webkitgtk.org

If a <select> element contains <option>s inside an <optgroup>, the type-ahead
search never picks those <option>s when the popup menu is opened.

To reproduce the issue, save the following HTML snippet in a file:

  <!DOCTYPE html>
  <html>
    <body>
      <form action="#">
        <label for="opt">Choose</label>
        <select name="opt">
          <optgroup label="Fruits">
            <option>Apple</option>
            <option>Strawberry</option>
          </optgroup>
          <optgroup label="Desserts">
            <option>Cake</option>
            <option>Flan</option>
          </optgroup>
        </select>
      </form>
    </body>
  </html>

Then open it (e.g. in MiniBrowser), click the element to make the popup menu
appear, and try entering the first letter of one of the <option>s. For example
entering “s” should select “Strawberry“, but currently this is not working.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170508/fbee2945/attachment.html>


More information about the webkit-unassigned mailing list