does not support the "onclick" for options in the multi select list: http://www.w3.org/TR/html4/interact/scripts.html#adef-onclick // Example of failing form: <form name="form"> <select multiple="multiple"> <option value="1">1</option> <option value="2" disabled onclick="javascript:alert('You cannot select this option');">2</option> <option value="3">3</option> </select> </form>
No onclick event is generated at all when clicked on an option in a multiple select box. Minimal testcase coming up. Reassigning to webkit-unassigned.
Created attachment 5352 [details] testcase
*** This bug has been marked as a duplicate of 3248 ***