chromium/content/test/data/accessibility/aom/aom-busy.html

<!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>