tor-browser

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

slot-content-visibility-18-crash.html (550B)


      1 <!DOCTYPE html>
      2 <link rel=author href="mailto:jarhar@chromium.org">
      3 <link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1267276">
      4 
      5 <table>foo</table>
      6 <details open=true>
      7  <dialog open=true>
      8    <table>
      9      <tr></tr>
     10    </table>
     11  </dialog>
     12 </details>
     13 
     14 <script>
     15  const dialog = document.querySelector('dialog');
     16  dialog.close();
     17  dialog.showModal();
     18  const cell = document.querySelector('tr').insertCell();
     19  document.querySelector('details').appendChild(cell);
     20  document.body.attachShadow({mode: 'closed'});
     21 </script>