Closed
Bug 943603
Opened 12 years ago
Closed 12 years ago
Don't let doc accessible keep trailing br
Categories
(Core :: Disability Access APIs, defect)
Tracking
()
RESOLVED
FIXED
mozilla29
People
(Reporter: surkov, Assigned: surkov)
References
(Blocks 1 open bug)
Details
(Keywords: access)
Attachments
(1 file)
4.53 KB,
patch
|
tbsaunde
:
review+
|
Details | Diff | Splinter Review |
copy of bug 899433
Attachment #8338822 -
Flags: review?(trev.saunders)
Comment 1•12 years ago
|
||
Comment on attachment 8338822 [details] [diff] [review]
patch
> TreeWalker walker(this, rootElm);
>+ Accessible* child = nullptr;
>+ Accessible* lastChild = nullptr;
>+ while ((child = walker.NextChild())) {
you could do
while (Accessible* child = ...) {
to limitt the scope of child if you like
Attachment #8338822 -
Flags: review?(trev.saunders) → review+
Assignee | ||
Comment 2•12 years ago
|
||
Assignee: nobody → surkov.alexander
Comment 3•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla29
You need to log in
before you can comment on or make changes to this bug.
Description
•