Bug 3248 - Mouse events on OPTION element seem to be ignored
Summary: Mouse events on OPTION element seem to be ignored
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Forms (show other bugs)
Version: 412
Hardware: Mac OS X 10.4
: P3 Normal
Assignee: Nobody
URL:
Keywords: InRadar
: 4341 19782 (view as bug list)
Depends on:
Blocks:
 
Reported: 2005-06-01 16:19 PDT by Dave Hyatt
Modified: 2009-02-18 11:35 PST (History)
7 users (show)

See Also:


Attachments
test case (1.19 KB, text/html)
2005-06-11 14:44 PDT, Stuart Morgan
no flags Details
Patch to fix the firing of mouse down (760 bytes, patch)
2008-11-02 20:43 PST, Sriram
adele: review-
Details | Formatted Diff | Diff
First attempt (9.56 KB, patch)
2009-02-05 12:48 PST, Rob Buis
darin: review-
Details | Formatted Diff | Diff
Code fixes (10.21 KB, patch)
2009-02-06 13:27 PST, Rob Buis
no flags Details | Formatted Diff | Diff
Improved testcase (13.82 KB, patch)
2009-02-07 05:21 PST, Rob Buis
darin: review+
Details | Formatted Diff | Diff
A proposal to modify the LayoutTest that has been created to validate the fix of this bug. (7.42 KB, patch)
2009-02-13 16:45 PST, Marc-André Decoste
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Dave Hyatt 2005-06-01 16:19:17 PDT
* SUMMARY
With Safari 2.0 or 1.2, Mouse events such as ommouseup, omousedown, onclick, and ondblclick seem 
to be ignored with OPTION element

* STEPS TO REPRODUCE
1. Open the attached test case called "option_onmouseup.html" in Safari 2.0 (412)
2. Click on the <option> items called 'kiwi'. Verify that no alert dialog is displayed after a mouse event.
3. Open this same test case in Firefox 1.0.3. Notice that a alert dialog is displayed for each event.


* REGRESSION
No, this problem also occurs in Safari 1.2
Comment 1 Dave Hyatt 2005-06-01 16:19:34 PDT
Apple Bug: rdar://4099606/
Comment 2 Stuart Morgan 2005-06-11 14:44:22 PDT
Created attachment 2254 [details]
test case

The test case mentioned above.
Comment 3 Eric Seidel (no email) 2005-12-28 00:49:38 PST
This should be a pretty simple fix.  And we might actually get this for free when hyatt/beth move this form 
control off of AppKit and onto our own engine.

However someone could also probably make this work with the existing form controls with under an hour 
worth of effort.
Comment 4 Alexey Proskuryakov 2007-01-06 15:06:05 PST
*** Bug 4341 has been marked as a duplicate of this bug. ***
Comment 5 Alexey Proskuryakov 2008-06-27 08:51:16 PDT
*** Bug 19782 has been marked as a duplicate of this bug. ***
Comment 6 Eric Seidel (no email) 2008-09-01 03:00:57 PDT
Wow.  This still doesn't work in Safari 3.1.  Huh.
Comment 7 Sriram 2008-11-02 20:43:07 PST
Created attachment 24856 [details]
Patch to fix the firing of mouse down

This patch only fixes the firing of the mouse down event.  Is this the correct place to fix this problem?  The issue in this bug is that the hit test result only returns the HTMLSelectElement as the node under mouse.  Another way to fix it would be to implement nodeAtPoint for both HTMLSelectElement and HTMLOptionElement.
Comment 8 Adele Peterson 2008-11-02 21:15:53 PST
Comment on attachment 24856 [details]
Patch to fix the firing of mouse down

I don't think this is the right approach- but I'm not sure the nodeatpoint approach is right either.  The tricky thing is that the option elements don't have renderers, so real hit testing will never happen.  Maybe you can implement htmlselectelement::nodeatpoint and fake the option hittesting
Comment 9 Rob Buis 2009-02-05 12:48:36 PST
Created attachment 27357 [details]
First attempt

This patch implements mouse events for option elements in list boxes.
Cheers,

Rob.
Comment 10 Darin Adler 2009-02-05 12:57:53 PST
Comment on attachment 27357 [details]
First attempt

> +        * html/HTMLSelectElement.cpp:
> +        (WebCore::HTMLSelectElement::listBoxDefaultEventHandler):
> +        * rendering/RenderListBox.cpp:
> +        (WebCore::RenderListBox::nodeAtPoint):
> +        * rendering/RenderListBox.h:

Per-function and per-file comments are preferred.

> @@ -1743,6 +1760,7 @@
>          (WebCore::RenderLayer::setHasCompositingDescendant):
>          Maintain a bit to tell if this layer has composited descendants.
>  
> +
>  2009-02-03  Simon Fraser  <simon.fraser@apple.com>

Why add a blank line here?

> +        // convert to coords relative to the list box if needed

Sentence-form comments with capital letters and periods are preferred.

>          MouseEvent* mEvt = static_cast<MouseEvent*>(evt);

The name mouseEvent seems much better than "mEvt"; maybe you should change it while modifying this code.

> +        Node* targ = evt->target()->toNode();

How about "target" rather than "targ"?

> +        if (targ != this) {
> +            FloatPoint absPos = renderer()->absoluteToLocal(FloatPoint(offsetX, offsetY), false, true);
> +            offsetX = absPos.x();
> +            offsetY = absPos.y();
> +        }

Do we really need to optimize the "targ == this" case? Is there a downside to always calling absoluteToLocal?

> +bool RenderListBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction)

Why the underscores in the argument names here? Just "x" and "y" would be better than "_x" and "_y". And it's bizarre to have both "_tx" and "tx" as names in the same function.

> +    bool ret = RenderBlock::nodeAtPoint( request, result, _x, _y, _tx, _ty, hitTestAction );
> +    if ( !ret )
> +        return false;

Extra spaces here. The name "ret" is too short. Maybe just put the nodeAtPoint call inside the if instead of including a local variable.

> +    int size = numItems();

The right type for the size of a vector is size_t. Why are we calling numItems() rather than calling size() on the vector? I worry that we might walk off the end of the vector.

> +    for (int listIndex = 0;listIndex < size;++listIndex) {

The rights size of a vector index is size_t. Need spaces after semicolons here. The name listIndex seems kind of long. How about just "i"? It's strange that for the index you chose a long name, but for the rectangle you chose "r".

> +            HTMLElement *node = listItems[listIndex];

The * needs to go next to the type name, not the variable name.

Enough things need fixing that I'll say review-.
Comment 11 Rob Buis 2009-02-06 13:24:08 PST
Hi Darin,

Thanks for the speedy review!

(In reply to comment #10)
> (From update of attachment 27357 [details] [review])
> > +        * html/HTMLSelectElement.cpp:
> > +        (WebCore::HTMLSelectElement::listBoxDefaultEventHandler):
> > +        * rendering/RenderListBox.cpp:
> > +        (WebCore::RenderListBox::nodeAtPoint):
> > +        * rendering/RenderListBox.h:
>
>
> Per-function and per-file comments are preferred.

Done.

> > @@ -1743,6 +1760,7 @@
> >          (WebCore::RenderLayer::setHasCompositingDescendant):
> >          Maintain a bit to tell if this layer has composited descendants.
> >  
> > +
> >  2009-02-03  Simon Fraser  <simon.fraser@apple.com>
> 
> Why add a blank line here?

Git merge leftover, fixed.
 
> > +        // convert to coords relative to the list box if needed
> 
> Sentence-form comments with capital letters and periods are preferred.

Fixed.
 
> >          MouseEvent* mEvt = static_cast<MouseEvent*>(evt);
> 
> The name mouseEvent seems much better than "mEvt"; maybe you should change it
> while modifying this code.

Agreed, fixed.
 
> > +        Node* targ = evt->target()->toNode();
> 
> How about "target" rather than "targ"?

Agreed, fixed.

> > +        if (targ != this) {
> > +            FloatPoint absPos = renderer()->absoluteToLocal(FloatPoint(offsetX, offsetY), false, true);
> > +            offsetX = absPos.x();
> > +            offsetY = absPos.y();
> > +        }
> 
> Do we really need to optimize the "targ == this" case? Is there a downside to
> always calling absoluteToLocal?

This may be the most tricky part of the patch. It took me a lot of time to find out that MouseRelatedEvent::receivedTarget does this translation when there is a renderer. Ofcourse there
is no renderer when the target is HTMLOptionElement, so the conversion is not done, therefore the
focus updating in default handler of HTMLSelectElement is not performed. I am afraid that targ != this test is not restrictive enough. Also doing the conversion twice for HTMLSelectElement is wrong, so there must be an if check AFAICS. One option is converting first to Element, then using hasLocalName(optiionElement) as the test. This sounds like a few more tests, but may be the best possible check?

> > +bool RenderListBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction)
> 
> Why the underscores in the argument names here? Just "x" and "y" would be
> better than "_x" and "_y". And it's bizarre to have both "_tx" and "tx" as
> names in the same function.

x is not used because it clashes with x(). Ofcourse this->x() can be used, not sure
whether that is optimized away(I guess so) and/or it looks better. I removed _tx, _ty for now.

> > +    bool ret = RenderBlock::nodeAtPoint( request, result, _x, _y, _tx, _ty, hitTestAction );
> > +    if ( !ret )
> > +        return false;
> 
> Extra spaces here. The name "ret" is too short. Maybe just put the nodeAtPoint
> call inside the if instead of including a local variable.

Agreed, fixed.
 
> > +    int size = numItems();
> 
> The right type for the size of a vector is size_t. Why are we calling
> numItems() rather than calling size() on the vector? I worry that we might walk
> off the end of the vector.

I just did that since it is done like that in this file. numItems calls size(). I can use size_t and
explicitly call size() if needed....

> > +    for (int listIndex = 0;listIndex < size;++listIndex) {
> 
> The rights size of a vector index is size_t. Need spaces after semicolons here.
> The name listIndex seems kind of long. How about just "i"? It's strange that
> for the index you chose a long name, but for the rectangle you chose "r".

Copy and pasted code, now I use i, fixed.

> > +            HTMLElement *node = listItems[listIndex];
> 
> The * needs to go next to the type name, not the variable name.

Fixed (left after copy and paste I think).

I'll post the patch now which fixes these problems in the code department. I plan to extend the test so it also adds listeners to the <select> elements and try to do some boundary hit tests, for instance testing what happens when a part is clicked of the listbox that has no item. Anyway is free to review the code changes or wait until the test is updated(which might need code changes), I don't plan to make that take too long before the test is final.
Cheers,

Rob.
Comment 12 Rob Buis 2009-02-06 13:27:16 PST
Created attachment 27416 [details]
Code fixes

Fixes for the code review comments. Test is unchanged and will be improved in a follow-up patch, which I plan to post somewhen this weekend, but apart from that the patch should be reviewable, just maybe not in a landeable state because of the improvements the test needs to get first.
Cheers,

Rob.
Comment 13 Rob Buis 2009-02-07 05:21:17 PST
Created attachment 27444 [details]
Improved testcase

The testcase now also tests that the parent select event listeners are processed and verifies the event target. The last test tests that clicking in the list box below the final item does not deliver the event to the option element and that the event target is set to the select.
I now consider the patch and test in a final state.
Cheers,

Rob.
Comment 14 Darin Adler 2009-02-07 11:13:02 PST
Comment on attachment 27444 [details]
Improved testcase

I still think that size_t and calling size() on listItems directly would be slightly better in RenderListBox::nodeAtPoint. I also would not bother with a local variable for the result of itemBoundingBoxRect and I would have put the declaration of "node" inside the if statement, and called it element rather than node. But these are tiny nits. Good new test!

I also think it's unfortunate that we use offsetX/Y at all, since they have a crazy definition. I bet we could make the code easier to understand if we used pageX/Y instead some day. For now, fix is great, r=me!

r=me
Comment 15 Brent Fulgham 2009-02-07 18:53:52 PST
Committed in http://trac.webkit.org/changeset/40763
Comment 16 Marc-André Decoste 2009-02-13 16:45:53 PST
Created attachment 27675 [details]
A proposal to modify the LayoutTest that has been created to validate the fix of this bug.

I'm not sure if this is the appropriate procedure to reopen the bug or if I should open a new one instead... Please warn me if it is the latter...

Thanks!

BYE
MAD
Comment 17 Marc-André Decoste 2009-02-13 16:49:30 PST
Is it OK to just add a new patch attachment to propose changes for the layout test validating this fix, or should I create a new bug?

The reason I propose this change is that the layout test fails on Chrome (and also WebKit on Windows) because the list boxes don't render with the exact same size as on the Mac. So I added absolute positions for the select elements and adapted the test coordinates accordingly... Hope it's OK...

Comment 18 Alexey Proskuryakov 2009-02-14 00:38:17 PST
Comment on attachment 27675 [details]
A proposal to modify the LayoutTest that has been created to validate the fix of this bug.

Please file a new bug. I considered just giving a review and checking this in, but got confused by your statement about this test failing on Windows. That doesn't seem to be confirmed by build.webkit.org, so I now wonder if it's even OK for ports to change the size of list boxes - someone more familiar with rendering will need to weigh in.

+2009-02-13  mad  <mad@chromium.org>

This is not a strict formal requirement, but most contributors use full names in ChangeLogs. Also, please add a bug URL to ChangeLog.
Comment 19 Marc-André Decoste 2009-02-18 11:35:00 PST
OK, created https://bugs.webkit.org/show_bug.cgi?id=24006 to fix the Layout Test.

Thanks!