blob: 2b092fa89e6142a82f5c30928ee87f115dc7beca [file] [log] [blame]
<!--
@BLINK-ALLOW:name=*
@WAIT-FOR:Done
-->
<!DOCTYPE html>
<html>
<body>
<div id="status" aria-label="Working"></div>
<button>
<p>
<div id="txt">Before</div>
</p>
</button>
<script>
setTimeout(function() {
document.getElementById('txt').textContent = 'After';
document.getElementById('status').setAttribute('aria-label', 'Done');
}, 100);
</script>
</body>
</html>