tor-browser

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

webkit-box-anon-flex-items-3.html (489B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>
      5    Test for whether whitespace gets wrapped in an anonymous box,
      6    inside of -webkit-box.
      7  </title>
      8  <style>
      9  .container {
     10    display: -webkit-box;
     11    -webkit-box-pack: justify;
     12    width: 300px;
     13    border: 1px solid black;
     14    white-space: pre;
     15  }
     16  </style>
     17 </head>
     18 <body>
     19  <!-- Note the space characters between the first and second divs here: -->
     20  <div class="container"><div>a</div>   <div>b</div><div>c</div></div>
     21 </body>
     22 </html>