blob: 682464f8adf8a9f15ab4426be4861e884ae589bd [file] [edit]
This test ensures we compute the correct editable ancestor.
PASS: accessibilityController.accessibleElementById('button').editableAncestor().domIdentifier === 'inner-ancestor'
PASS: accessibilityController.accessibleElementById('button').highestEditableAncestor().domIdentifier === 'inner-ancestor'
document.getElementById('outer-ancestor').setAttribute('contenteditable', 'true')
PASS: accessibilityController.accessibleElementById('button').highestEditableAncestor().domIdentifier === 'outer-ancestor'
PASS: accessibilityController.accessibleElementById('button').editableAncestor().domIdentifier === 'inner-ancestor'
document.getElementById('inner-ancestor').removeAttribute('contenteditable')
PASS: accessibilityController.accessibleElementById('button').editableAncestor().domIdentifier === 'outer-ancestor'
PASS: accessibilityController.accessibleElementById('button').highestEditableAncestor().domIdentifier === 'outer-ancestor'
PASS successfullyParsed is true
TEST COMPLETE
Click me