Closed
Bug 1997613
Opened 2 months ago
Closed 2 months ago
Null pointer dereference when calling DETAILS_FOR anchor does not have accessible
Categories
(Core :: Disability Access APIs, defect, P3)
Core
Disability Access APIs
Tracking
()
RESOLVED
FIXED
146 Branch
| Tracking | Status | |
|---|---|---|
| firefox-esr115 | --- | unaffected |
| firefox-esr140 | --- | unaffected |
| firefox144 | --- | unaffected |
| firefox145 | --- | wontfix |
| firefox146 | --- | fixed |
People
(Reporter: eeejay, Assigned: eeejay)
References
(Regression)
Details
(Keywords: crash, regression)
Crash Data
Attachments
(1 file)
This will crash:
addAccessibleTask(
`
<style>
#btn1 {
anchor-name: --btn1;
}
#target1 {
position: absolute;
position-anchor: --btn1;
left: anchor(right);
bottom: anchor(top);
}
</style>
<div id="target1">World</div>
<button id="btn1" aria-hidden="true">Hello</button>
`,
async function testARIAHiddenAnchorsAndPosition(browser, docAcc) {
info("ARIA hidden anchor");
const target1 = findAccessibleChildByID(docAcc, "target1");
await testCachedRelation(target1, RELATION_DETAILS_FOR, []);
},
{ chrome: true }
);
| Assignee | ||
Comment 1•2 months ago
|
||
Crash Signature: [@ mozilla::a11y::LocalAccessible::GetAnchorPositionTargetDetailsRelation]
| Assignee | ||
Updated•2 months ago
|
Keywords: crash,
regression
Regressed by: 1909354
| Assignee | ||
Comment 2•2 months ago
|
||
Updated•2 months ago
|
Attachment #9523857 -
Attachment description: Bug 1997613 - Check if anchor actually has accessible. r?morgan → Bug 1997613 - Check if anchor actually has accessible. r?Jamie
Pushed by eisaacson@mozilla.com:
https://github.com/mozilla-firefox/firefox/commit/ad2c5304febf
https://hg.mozilla.org/integration/autoland/rev/12aca1599aa9
Check if anchor actually has accessible. r=Jamie
Comment 4•2 months ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 2 months ago
status-firefox146:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 146 Branch
Updated•1 month ago
|
status-firefox144:
--- → unaffected
status-firefox145:
--- → wontfix
status-firefox-esr115:
--- → unaffected
status-firefox-esr140:
--- → unaffected
Flags: in-testsuite+
You need to log in
before you can comment on or make changes to this bug.
Description
•