tor-browser

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

counters-container-crash.html (328B)


      1 <!DOCTYPE html>
      2 <title>Crash in line layout in Chrome with quotes and container queries</title>
      3 <link rel="help" href="http://crbug.com/1505164">
      4 <style>
      5 #quote {
      6  container-type: size;
      7  display: inline-block;
      8 }
      9 div {
     10  appearance: auto;
     11  container-type: size;
     12 }
     13 </style>
     14 <q></q>
     15 <div>
     16  <q id="quote"></q>
     17  <q></q>
     18 </div>