tor-browser

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

bug-916535-background-repeat-linear-ref.html (462B)


      1 <!doctype html>
      2 <html lang="en">
      3 
      4 <head>
      5  <meta charset="utf-8">
      6  <title>Grid</title>
      7  <style>
      8      body {
      9        background: #fff;
     10    }
     11    .r {background: red; width: 300px; height: 50px}
     12    .g {background: green; width: 300px; height: 50px}
     13  </style>
     14 </head>
     15 
     16 <body>
     17        <div class=r></div>
     18        <div class=g></div>
     19        <div class=r></div>
     20        <div class=g></div>
     21        <div class=r></div>
     22        <div class=g></div>
     23 </body>
     24 </html>