Closed
Bug 1004294
Opened 11 years ago
Closed 10 years ago
[AccessFu] Explore by touch in B2G is sluggish
Categories
(Core :: Disability Access APIs, defect)
Tracking
()
RESOLVED
FIXED
mozilla32
People
(Reporter: eeejay, Assigned: eeejay)
Details
Attachments
(1 file, 3 obsolete files)
9.32 KB,
patch
|
yzen
:
review+
|
Details | Diff | Splinter Review |
From some profiling, it seems like the bottleneck is the message sending, not the actual moveToPoint traversal.
Assignee | ||
Comment 1•11 years ago
|
||
Here is a WIP. Marco, want to give it a spin? Extra bonus if someone tests this on Android, may need sighted assistance to confirm that finger is actually on correct element in Android.
Attachment #8415660 -
Flags: feedback?(marco.zehe)
Comment 2•11 years ago
|
||
Comment on attachment 8415660 [details] [diff] [review]
Improve explore by touch performance.
I actually tested Android first, because that build setup is currently working for me, whereas B2G isn't, or rather, I forgot how to do this magical invisible VM thing Yura installed for me. :-)
And on Android, things are definitely not looking so good. :-( Exploring by touch is sluggish or lags behind. It feels like TalkBack events get queued up and lag behind by one or two items minimum. Only if I pause exploration has AccessFu a chance to catch up.
Minusing feedback based on this.
Attachment #8415660 -
Flags: feedback?(marco.zehe) → feedback-
Assignee | ||
Comment 3•10 years ago
|
||
Unfortunately the top-level chrome window in Android has some peculiarities that make it hard to send mousemove events. Specifically, its viewport "size" is smaller than the content size that is displayed, because the resolution is independant, or something. Anyway, I was forced to use separate code paths for android and the rest.
Attachment #8415660 -
Attachment is obsolete: true
Attachment #8424141 -
Flags: review?(yzenevich)
Attachment #8424141 -
Flags: feedback?(marco.zehe)
Comment 4•10 years ago
|
||
Comment on attachment 8424141 [details] [diff] [review]
Improve explore by touch performance.
f=me for this one! Works nicely on both FF OS and Android, the latter on both Nexus 7 2012 and 2013. Nice speed improvement on all tested devices!
Attachment #8424141 -
Flags: feedback?(marco.zehe) → feedback+
Assignee | ||
Comment 5•10 years ago
|
||
Oops, I forgot to stage the changes in the patch. This is the correct one.
Attachment #8424141 -
Attachment is obsolete: true
Attachment #8424141 -
Flags: review?(yzenevich)
Attachment #8424966 -
Flags: review?(yzenevich)
Comment 6•10 years ago
|
||
Comment on attachment 8424966 [details] [diff] [review]
Improve explore by touch performance.
Review of attachment 8424966 [details] [diff] [review]:
-----------------------------------------------------------------
AFAICT there's a name collision in CC (+ a couple of comments).
::: accessible/src/jsat/AccessFu.jsm
@@ +917,5 @@
> aEvent.stopPropagation();
> },
>
> moveToPoint: function moveToPoint(aRule, aX, aY) {
> + if (Utils.MozBuildApp === 'mobile/android') {
Need a comment here (similar to the comment #3)
@@ +923,5 @@
> + mm.sendAsyncMessage('AccessFu:MoveToPoint',
> + {rule: aRule, x: aX, y: aY, origin: 'top'});
> + } else {
> + let win = Utils.win;
> + let wu = win.QueryInterface(Ci.nsIInterfaceRequestor).
Since we already have a getter for dpi, that resolves nsIDOMWindowUtils, lets have a getter for that in utils.
@@ +924,5 @@
> + {rule: aRule, x: aX, y: aY, origin: 'top'});
> + } else {
> + let win = Utils.win;
> + let wu = win.QueryInterface(Ci.nsIInterfaceRequestor).
> + getInterface(Ci.nsIDOMWindowUtils);
Nit: indentation.
::: accessible/src/jsat/ContentControl.jsm
@@ +132,5 @@
> + { json: { x: aEvent.screenX, y: aEvent.screenY, rule: 'Simple' } });
> + }
> + },
> +
> + handleMoveToPoint: function cc_handleMoveToPoint(aEvent) {
There's already a handleMoveToPoint method in cc.
Attachment #8424966 -
Flags: review?(yzenevich)
Assignee | ||
Comment 7•10 years ago
|
||
Attachment #8424966 -
Attachment is obsolete: true
Attachment #8425754 -
Flags: review?(yzenevich)
Comment 8•10 years ago
|
||
Comment on attachment 8425754 [details] [diff] [review]
Improve explore by touch performance.
Review of attachment 8425754 [details] [diff] [review]:
-----------------------------------------------------------------
Great, r=me with just 1 comment.
::: accessible/src/jsat/AccessFu.jsm
@@ +1006,5 @@
> let horizontal = aDetails.horizontal;
> let page = aDetails.page;
> let p = AccessFu.adjustContentBounds(aDetails.bounds, Utils.CurrentBrowser,
> true, true).center();
> let wu = Utils.win.QueryInterface(Ci.nsIInterfaceRequestor).
wu is now not necessary.
Attachment #8425754 -
Flags: review?(yzenevich) → review+
Assignee | ||
Comment 9•10 years ago
|
||
Assignee: nobody → eitan
Comment 10•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla32
You need to log in
before you can comment on or make changes to this bug.
Description
•