Closed
Bug 766789
Opened 13 years ago
Closed 13 years ago
Fire mouse events closer to the tip of the handle image
Categories
(Firefox for Android Graveyard :: Text Selection, defect)
Tracking
(firefox15 fixed, firefox16 fixed)
RESOLVED
FIXED
Firefox 16
People
(Reporter: Margaret, Assigned: Margaret)
References
Details
Attachments
(1 file)
4.93 KB,
patch
|
mbrubeck
:
review+
|
Details | Diff | Splinter Review |
This should help with the issues seen in bug 765057. I think I'll wait to land that patch until we address this.
Unfortunately, I found that if we fire our mouse events directly over a handle element, they capture the events, and that causes all the text to get selected (I imagine because they're located in a totally different part of the DOM - the same issue as bug 765072). To cope with this, I got rid of the top padding on our handles, and I'm just sending the mouse events 1px above the handles. (I was adjusting it by HANDLE_VERTICAL_MARGIN before, and that's wrong. I probably just settled on what didn't cause all the text to get selected, without actually figuring out the root issue.) I didn't find that getting rid of the padding made it harder to trigger the touch events.
I renamed HANDLE_VERTICAL_MARGIN to HANDLE_VERTICAL_OFFSET because it's just an offset used in positionHandles (it doesn't correspond to any margin), and I upped it to 10 because I found that worked better.
Attachment #635137 -
Flags: review?(mbrubeck)
Assignee | ||
Comment 1•13 years ago
|
||
(In reply to Margaret Leibovic [:margaret] from comment #0)
> Unfortunately, I found that if we fire our mouse events directly over a
> handle element, they capture the events, and that causes all the text to get
> selected (I imagine because they're located in a totally different part of
> the DOM - the same issue as bug 765072).
For complete information, I tried setting pointer-events:none; on the handles, but that caused them to become unresponsive to touch events. Then I tried just dynamically setting it, and although a test click listener I added didn't fire, I still experienced the same all-text-selected problem, so I decided to give up and just try removing the padding.
Comment 2•13 years ago
|
||
Comment on attachment 635137 [details] [diff] [review]
patch
Nice! This is working much better for me. I don't find the handles any harder to grab either; I think their shape encourages grabbing them closer to the lower half.
Attachment #635137 -
Flags: review?(mbrubeck) → review+
Assignee | ||
Comment 3•13 years ago
|
||
Assignee: nobody → margaret.leibovic
Target Milestone: --- → Firefox 16
Comment 4•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 5•13 years ago
|
||
Uplifted to aurora as part of a roll-up patch:
https://hg.mozilla.org/releases/mozilla-aurora/rev/2fb0a358eaf6
Updated•4 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•