tor-browser

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

transform-input-015-ref.html (847B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Reftest Reference</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <style>
      7      input {
      8        margin: 10px;
      9        position: relative;
     10      }
     11      p + input + input {
     12        left: -10px;
     13      }
     14      p + input + input + input {
     15        left: 10px;
     16      }
     17      p + input + input + input + input {
     18        top: -10px;
     19      }
     20      p + input + input + input + input + input {
     21        top: 10px;
     22      }
     23    </style>
     24  </head>
     25  <body>
     26    <p>type=range</p>
     27    <input value="613" min="0" max="1000" type="range">
     28    <input value="613" min="0" max="1000" type="range">
     29    <input value="613" min="0" max="1000" type="range">
     30    <input value="613" min="0" max="1000" type="range">
     31    <input value="613" min="0" max="1000" type="range">
     32  </body>
     33 </html>