blob: 53cfcb00714784b7ccca21353f9086137bfd6a56 [file] [log] [blame]
<!DOCTYPE html>
<!--
@BLINK-ALLOW:busy=true
-->
<html>
<body>
<div id="will-be-busy"></div>
<div id="aria-busy-only" aria-busy="true"></div>
<div id="will-not-be-busy" aria-busy="true"></div>
<script>
// AOM takes precedence over ARIA markup
document.getElementById("will-be-busy").accessibleNode.busy = true;
document.getElementById("will-not-be-busy").accessibleNode.busy = false;
</script>
</body>
</html>