tor-browser

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

display-contents-flex-001-ref.html (409B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Test Reference</title>
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecobos@igalia.com">
      5 <style>
      6 .flex {
      7  display: flex;
      8 }
      9 .inline {
     10  display: inline;
     11 }
     12 </style>
     13 <p>Test passes if you see the word "PASS", with a "0" under the first "S", and no red</p>
     14 <div class="flex">
     15 P
     16  <div>A</div>
     17  <div class="inline">S<div>0</div></div>
     18  S
     19 </div>