| Summary: | [iOS] <select> with <optgroup> may change initial selected option when assisted | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Joseph Pecoraro <joepeck> | ||||
| Component: | WebKit2 | Assignee: | Joseph Pecoraro <joepeck> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | enrica, joepeck | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
Created attachment 238949 [details]
[PATCH] Proposed Fix
Comment on attachment 238949 [details]
[PATCH] Proposed Fix
Looks good to me.
Comment on attachment 238949 [details] [PATCH] Proposed Fix Clearing flags on attachment: 238949 Committed r174148: <http://trac.webkit.org/changeset/174148> |
* TEST: <select onchange="alert('current selected value is:'+this.value);"> <optgroup label="Group"> <option value="a">A</option> <option value="b">B</option> <option selected value="c">C</option> <option value="d">D</option> </optgroup> </select> * STEPS TO REPRODUCE: 1. Open test page 2. Tap the <select> => initial selection changes from "C" to "B" I have a fix.