Closed
Bug 1442029
Opened 7 years ago
Closed 7 years ago
Move XBL accessibility role="xul:colorpicker" and role="xul:colorpickertile" into XULMap.h
Categories
(Toolkit :: UI Widgets, enhancement)
Toolkit
UI Widgets
Tracking
()
RESOLVED
FIXED
mozilla60
Tracking | Status | |
---|---|---|
firefox60 | --- | fixed |
People
(Reporter: timdream, Assigned: timdream)
References
Details
Attachments
(1 file)
Given that bug 1416363 is still pending let's get rid of the role attribute first.
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Assignee | ||
Updated•7 years ago
|
Attachment #8954954 -
Flags: review?(surkov.alexander)
Comment 4•7 years ago
|
||
mozreview-review |
Comment on attachment 8954954 [details]
Bug 1442029 - Move XBL accessibility role="xul:colorpicker" and role="xul:colorpickertile" into XULMap.h
https://reviewboard.mozilla.org/r/224146/#review230746
::: accessible/base/XULMap.h:79
(Diff revision 3)
> }
>
> + if (aContent->IsElement() &&
> + aContent->AsElement()->ClassList()->Contains(NS_LITERAL_STRING("colorpickertile"))) {
> + return new XULColorPickerTileAccessible(aContent, aContext->Document());
> + }
if (!aContent->IsElement() {
return nsnull;
}
would be nicer.
Could you please file a follow up bug to change XULMAP functions to take Element* instead nsIContent* so we won't have to check IsElement() everytime?
Attachment #8954954 -
Flags: review?(surkov.alexander) → review+
Comment 5•7 years ago
|
||
Comment on attachment 8954954 [details]
Bug 1442029 - Move XBL accessibility role="xul:colorpicker" and role="xul:colorpickertile" into XULMap.h
Neil, probably should take a look at XBL part
Attachment #8954954 -
Flags: review?(enndeakin)
Comment hidden (mozreview-request) |
Assignee | ||
Updated•7 years ago
|
Attachment #8954954 -
Flags: review?(enndeakin)
Comment 7•7 years ago
|
||
mozreview-review |
Comment on attachment 8954954 [details]
Bug 1442029 - Move XBL accessibility role="xul:colorpicker" and role="xul:colorpickertile" into XULMap.h
https://reviewboard.mozilla.org/r/224146/#review230972
Attachment #8954954 -
Flags: review?(enndeakin) → review+
Pushed by timdream@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/194cb5ea7ed6
Move XBL accessibility role="xul:colorpicker" and role="xul:colorpickertile" into XULMap.h r=enndeakin+6102,surkov
![]() |
||
Comment 9•7 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
status-firefox60:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla60
You need to log in
before you can comment on or make changes to this bug.
Description
•