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