tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

inert-focus-in-frames-frame1.html (678B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <script>
      5 window.onload = parent.parent.frameLoaded;
      6 </script>
      7 </head>
      8 <body>
      9 <dialog id="dialog">
     10    <button id="dialog-button" tabindex="0">Button</button>
     11    <iframe id="iframe-in-dialog" srcdoc='
     12        <input id="iframe-under-dialog-input" class="target" type="date">
     13    '></iframe>
     14 </dialog>
     15 <input id="frame1-input" class="target" type="text">
     16 <iframe id="iframe1" srcdoc='
     17    <dialog id="iframe-dialog">
     18        <button id="iframe-dialog-button" tabindex="0">Button</button>
     19    </dialog>
     20    <input id="iframe-input" class="target" type="date">
     21    <script>window.onload = parent.parent.parent.frameLoaded;</script>
     22 '>
     23 </body>
     24 </html>