<!--
@WAIT-FOR:oranges
@BLINK-ALLOW:description=*
@WIN-ALLOW:description=*
@MAC-ALLOW:AXDescription
@MAC-ALLOW:accessibilityCustomContent
@MAC-ALLOW:AXHelp*
@BLINK-DENY:descriptionFrom*
-->
<!DOCTYPE html>
<html>
<body>
<div role="main" aria-describedby="title">
<p id="title" aria-hidden="true">apples</p>
</div>
</div>
<script>
setTimeout(() => {
const label = document.getElementById('title');
label.innerHTML = 'oranges';
}, 100);
</script>
</body>
</html>