Closed
Bug 591163
Opened 15 years ago
Closed 15 years ago
mochitest for bug 413777
Categories
(Core :: Disability Access APIs, defect)
Core
Disability Access APIs
Tracking
()
RESOLVED
FIXED
People
(Reporter: surkov, Assigned: surkov)
References
Details
(Keywords: access)
Attachments
(1 file)
|
7.83 KB,
patch
|
MarcoZ
:
review+
|
Details | Diff | Splinter Review |
tabbing through a:focus { overflow: scroll; } shouldn't result in accessible recreation for HTML a.
| Assignee | ||
Comment 1•15 years ago
|
||
Attachment #469814 -
Flags: review?(marco.zehe)
Comment 2•15 years ago
|
||
Comment on attachment 469814 [details] [diff] [review]
patch
>- for (var idx = 0; idx < this.mEventSeq.length; idx++) {
>+ var idx = 0;
>+ for (; idx < this.mEventSeq.length; idx++) {
Personally, I would never have written it this way, I would always put the initialization in the for loop expression. So:
var idx;
for (idx = 0; ...
But I'll leave it to you to write it as you see fit. To me it looks strange. :)
>+ // No any expected event was registered, proceed next invoker to ensure
>+ // unexpected events for current invoker won't be handled.
This must be rephrased to be clear:
+ // No expected events were registered, proceed to next invoker to ensure
+ // unexpected events for current invoker won't be handled.
Otherwise, nice work as always! r=me
Attachment #469814 -
Flags: review?(marco.zehe) → review+
| Assignee | ||
Comment 3•15 years ago
|
||
(In reply to comment #2)
> Personally, I would never have written it this way, I would always put the
> initialization in the for loop expression. So:
>
> var idx;
> for (idx = 0; ...
>
> But I'll leave it to you to write it as you see fit. To me it looks strange. :)
idx is used outside of for cycle, therefore I followed this syntax. to be more clear I don't know.
> This must be rephrased to be clear:
>
> + // No expected events were registered, proceed to next invoker to ensure
> + // unexpected events for current invoker won't be handled.
done
> Otherwise, nice work as always! r=me
thank you
| Assignee | ||
Comment 4•15 years ago
|
||
landed on 2.0 - http://hg.mozilla.org/mozilla-central/rev/b976b3535a2f
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•