tor-browser

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

frameset-crash.html (531B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="David Grogan" href="dgrogan@chromium.org">
      3 <link rel="help" href="https://crbug.com/1173843">
      4 <meta name="assert" content="No crash when a flexbox lays out a frameset with a border in the main axis direction.">
      5 <style>
      6 frameset {
      7  border-right: 50px solid red;
      8 }
      9 </style>
     10 
     11 <div id='flex' style="display: flex"></div>
     12 
     13 <script>
     14  // I couldn't get the parser to accept a framset inside a div, so this uses
     15  // JS instead.
     16  flex.appendChild(document.createElement('frameset'));
     17 </script>