tor-browser

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

background-attachment-local-inline-002-ref.html (758B)


      1 <!DOCTYPE html>
      2 
      3  <meta charset="UTF-8">
      4 
      5  <title>CSS Reftest reference</title>
      6 
      7  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
      8 
      9  <style>
     10  body
     11    {
     12      height: 50vh;
     13      margin: 0px;
     14    }
     15 
     16  div#filler-before
     17    {
     18      height: 125vh;
     19    }
     20 
     21  div#blue
     22    {
     23      background-color: blue;
     24      height: 12.5vh;
     25      width: 50vh;
     26     }
     27 
     28  div#orange
     29    {
     30      background-color: orange;
     31      height: 12.5vh;
     32      width: 50vh;
     33    }
     34 
     35  div#filler-after
     36    {
     37      height: 50vh;
     38    }
     39  </style>
     40 
     41  <body onload="window.scroll(0, document.body.offsetHeight);">
     42 
     43  <div id="filler-before"></div>
     44 
     45  <div id="blue"></div>
     46 
     47  <div id="orange"></div>
     48 
     49  <div id="filler-after"></div>