tor-browser

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

webkit-box-anon-flex-items-2.html (466B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>
      5    Test for how block-in-inline splits behave inside of -webkit-box.
      6  </title>
      7  <style>
      8  .container {
      9    display: -webkit-box;
     10    -webkit-box-pack: justify;
     11    width: 300px;
     12    border: 1px solid black;
     13    font: 10px sans-serif;
     14  }
     15  .container > * {
     16    background: lightgray;
     17  }
     18  </style>
     19 </head>
     20 <body>
     21 <div class="container">
     22  raw text
     23  <span>start<div>BLOCK</div>end</span>
     24  raw text
     25 </div>
     26 </body>
     27 </html>