tor-browser

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

css-flexbox-test1-ref.html (777B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <meta charset="utf-8" />
      5    <title>CSS Reftest Reference</title>
      6    <link rel="author" title="Tsutomu ogaoga Ogasawara" href="mailto:info@ogaoga.org">
      7    <style type="text/css">
      8        .container {
      9            color: white;
     10        }
     11        .item {
     12            writing-mode: vertical-rl;
     13            background: green;
     14            height: 3em;
     15            width: 3em;
     16        }
     17    </style>
     18 </head>
     19 <body>
     20 
     21  <p>The test passes if you see a tall green box with pairs of the digits 1-9 listed top to bottom in two columns.</p>
     22 
     23  <div class="container">
     24    <div class="item">123<br />123</div>
     25    <div class="item">456<br />456</div>
     26    <div class="item">789<br />789</div>
     27  </div>
     28 
     29 </body>
     30 </html>