OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 @MAC-ALLOW:AXARIAAtomic=* |
| 4 @WIN-ALLOW:atomic:* |
| 5 @WIN-ALLOW:container-atomic:* |
| 6 @BLINK-ALLOW:liveAtomic=true |
| 7 --> |
| 8 <html> |
| 9 <body> |
| 10 <p id="atomicfalse" role="log" aria-live="polite" tabindex="0"> This test is f
or atomic="false" </p> |
| 11 <p id="atomictrue" role="log" aria-live="polite" tabindex="1"> This test is fo
r atomic="true" </p> |
| 12 |
| 13 <!-- Roles of "alert" and "status" have implicit aria-atomic of true. --> |
| 14 <p id="alert" role="alert" tabindex="2">This test is for alert.</p> |
| 15 <p id="status" role="status" tabindex="3">This test is for status.</p> |
| 16 |
| 17 <script> |
| 18 document.getElementById("atomicfalse").accessibleNode.atomic = false; |
| 19 document.getElementById("atomictrue").accessibleNode.atomic = true; |
| 20 </script> |
| 21 |
| 22 </body> |
| 23 </html> |
OLD | NEW |