Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
AX: After a dynamic contenteditable change, accessibility objects do …
…not update their role https://bugs.webkit.org/show_bug.cgi?id=244126 rdar://problem/98886191 Reviewed by Chris Fleizach. With this patch, we now update the role of the object associated with the contenteditable change. * LayoutTests/accessibility/dynamically-unignored-contenteditable-expected.txt: Added. * LayoutTests/accessibility/dynamically-unignored-contenteditable.html: Added. * LayoutTests/platform/glib/accessibility/dynamically-unignored-contenteditable-expected.txt: Added. * Source/WebCore/accessibility/AXObjectCache.cpp: (WebCore::AXObjectCache::handleAttributeChange): Canonical link: https://commits.webkit.org/253630@main
- Loading branch information
Showing
5 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
This test ensures that we properly change an object's ignored status after dynamically changing its contenteditable attribute. | ||
|
||
#div is initially ignored: true | ||
#wrapper children: | ||
|
||
Adding contenteditable='true' to #div. | ||
#div is ignored: false | ||
#wrapper children: | ||
AXRole: AXTextArea | ||
|
||
Removing contenteditable='true' from #div. | ||
#div is ignored: true | ||
#wrapper children: | ||
|
||
Adding role='button' to #div. | ||
#div is ignored: false | ||
#wrapper children: | ||
AXRole: AXButton | ||
|
||
PASS successfullyParsed is true | ||
|
||
TEST COMPLETE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | ||
<html> | ||
<head> | ||
<script src="../resources/accessibility-helper.js"></script> | ||
<script src="../resources/js-test.js"></script> | ||
</head> | ||
<body> | ||
|
||
<div id="wrapper" role="group"> | ||
<div id="div"></div> | ||
</div> | ||
|
||
<script> | ||
var testOutput = "This test ensures that we properly change an object's ignored status after dynamically changing its contenteditable attribute.\n\n"; | ||
|
||
function isIgnored(id) { | ||
const axElement = accessibilityController.accessibleElementById(id); | ||
if (!axElement) | ||
return true; | ||
return axElement.isIgnored; | ||
} | ||
|
||
function addWrapperChildrenToOutput() { | ||
testOutput += "#wrapper children:\n"; | ||
const wrapper = accessibilityController.accessibleElementById("wrapper"); | ||
for (let i = 0; i < wrapper.childrenCount; i++) | ||
testOutput += `${wrapper.childAtIndex(i).role}\n`; | ||
} | ||
|
||
if (window.accessibilityController) { | ||
window.jsTestIsAsync = true; | ||
|
||
testOutput += `#div is initially ignored: ${isIgnored("div")}\n`; | ||
addWrapperChildrenToOutput(); | ||
|
||
testOutput += "\nAdding contenteditable='true' to #div.\n"; | ||
document.getElementById("div").contentEditable = "true"; | ||
setTimeout(async function() { | ||
await waitFor(() => !isIgnored("div")); | ||
testOutput += `#div is ignored: ${isIgnored("div")}\n`; | ||
addWrapperChildrenToOutput(); | ||
|
||
testOutput += "\nRemoving contenteditable='true' from #div.\n"; | ||
document.getElementById("div").removeAttribute("contenteditable"); | ||
|
||
await waitFor(() => isIgnored("div")); | ||
testOutput += `#div is ignored: ${isIgnored("div")}\n`; | ||
addWrapperChildrenToOutput(); | ||
|
||
testOutput += "\nAdding role='button' to #div.\n"; | ||
document.getElementById("div").setAttribute("role", "button"); | ||
|
||
await waitFor(() => !isIgnored("div")); | ||
testOutput += `#div is ignored: ${isIgnored("div")}\n`; | ||
addWrapperChildrenToOutput(); | ||
|
||
debug(testOutput); | ||
finishJSTest(); | ||
}, 0); | ||
} | ||
</script> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
This test ensures that we properly change an object's ignored status after dynamically changing its contenteditable attribute. | ||
|
||
#div is initially ignored: true | ||
#wrapper children: | ||
|
||
Adding contenteditable='true' to #div. | ||
#div is ignored: false | ||
#wrapper children: | ||
AXRole: AXTextField | ||
|
||
Removing contenteditable='true' from #div. | ||
#div is ignored: true | ||
#wrapper children: | ||
|
||
Adding role='button' to #div. | ||
#div is ignored: false | ||
#wrapper children: | ||
AXRole: AXButton | ||
|
||
PASS successfullyParsed is true | ||
|
||
TEST COMPLETE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters