tor-browser

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

quote-scoping-shadow-dom-crash.html (349B)


      1 <!doctype html>
      2 <link rel="help" href="http://crbug.com/329231572">
      3 <style>
      4  #test { contain: style; }
      5 </style>
      6 <body>
      7 <q id="test"></q>
      8 <div>
      9  <template shadowrootmode="open">
     10    <slot></slot>
     11  </template>
     12  <q id="test2"></q>
     13 </div>
     14 <script>
     15  test.offsetTop;
     16  test2.slot = "1";
     17  test2.appendChild(test);
     18  test.offsetTop;
     19 </script>
     20 </body>