blob: 299478af3fcc3a3b6a714394b9ee92f3241f2a99 [file] [log] [blame]
<!--
@WAIT-FOR:Done
-->
<!doctype HTML>
<div tabindex="0" id="status" aria-label="Working"></div>
<p id=p style="visibility:hidden">
Should end up with a trailing whitespace
</p>
<script>
setTimeout(() => {
let a = document.createElement("a");
a.innerText = "link";
p.appendChild(a);
setTimeout(() => {
document.getElementById('status').setAttribute('aria-label', 'Done');
}, 0);
}, 1000);
</script>