blob: 65d8c3a09774d88889bcd44c701c6d617ed6a823 [file] [log] [blame]
<!--
@BLINK-ALLOW:description=*
@WIN-ALLOW:description=*
@UIA-WIN-DENY:Text_TextChanged*
@MAC-ALLOW:AXDescription
Due to a bug in Windows (fixed in Windows 10 19H1), events are raised
exactly twice for any in-proc off-thread event listeners.
AccessibilityEventRecorderUia will try to filter duplicate events, but the
name of the heading item changes so depending on when the superfluous event
is received it may not be filtered out.
Denying the structure change events since this test is mainly testing the
Name and FullDescription changed.
@UIA-WIN-DENY:StructureChanged/*
-->
<!DOCTYPE html>
<html>
<body>
<div role="main" aria-describedby="title">
</div>
<h1 id="title">apples</h1>
</div>
<script>
function go() {
const label = document.getElementById('title');
label.innerHTML = 'oranges';
}
</script>
</body>
</html>