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-ref.html (532B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>
      5    Reference Case
      6  </title>
      7  <style>
      8  .container {
      9    display: flex;
     10    justify-content: space-between;
     11    width: 300px;
     12    border: 1px solid black;
     13  }
     14  .wspWrapper {
     15    white-space: pre;
     16  }
     17  </style>
     18 </head>
     19 <body>
     20 <!-- We use an explicit div here, to match the anonymous div that the testcase
     21     is expected to generate around the whitespace. -->
     22 <div class="container">
     23  <div>a</div>
     24  <div class="wspWrapper">   </div>
     25  <div>b</div>
     26  <div>c</div>
     27 </div>
     28 </body>
     29 </html>