1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26

content / test / data / accessibility / aria / aria-live-nested.html [blame]

<!DOCTYPE html>
<!--
@BLINK-ALLOW:liveStatus*
@BLINK-ALLOW:containerLiveStatus*
-->
<html>
  <body>
    <div role="group" aria-live="polite">
      <div role="group" aria-live="off">
        Nested - off
      </div>
    </div>
    <div role="group" aria-live="off">
      <div role="group" aria-live="polite">
        Nested - polite
      </div>
    </div>
    <div role="group" aria-live="polite">
      <div>
        <div role="group" aria-live="assertive">
          Nested - assertive
        </div>
      </div>
    </div>
  </body>
</html>