Closed Bug 591163 Opened 15 years ago Closed 15 years ago

mochitest for bug 413777

Categories

(Core :: Disability Access APIs, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED

People

(Reporter: surkov, Assigned: surkov)

References

Details

(Keywords: access)

Attachments

(1 file)

tabbing through a:focus { overflow: scroll; } shouldn't result in accessible recreation for HTML a.
Attached patch patchSplinter Review
Attachment #469814 - Flags: review?(marco.zehe)
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+
(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
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.

Attachment

General

Created:
Updated:
Size: