1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20

content / test / data / accessibility / event / add-dialog-no-info.html [blame]

<html>
  <head>
      <script>
          function go() {
            document.getElementById("no-info-dialog").removeAttribute("hidden");
          }
      </script>
  </head>
  <body>

    <div id="no-info-dialog" role="dialog" hidden>
      <h2>Dialog title</h2>
      <p>Dialog content:</p>
      <div>
        <input type="text" id="no-info-dialog-focus-element">
      </div>
    </div>

  </body>
</html>