tor-browser

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

transform-input-009-ref.html (859B)


      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    <link rel="stylesheet" href="/fonts/ahem.css">
      7    <style>
      8      input {
      9        font: 25px/1 Ahem;
     10        margin: 10px;
     11        position: relative;
     12      }
     13      p + input + input {
     14        left: -10px;
     15      }
     16      p + input + input + input {
     17        left: 10px;
     18      }
     19      p + input + input + input + input {
     20        top: -10px;
     21      }
     22      p + input + input + input + input + input {
     23        top: 10px;
     24      }
     25    </style>
     26  </head>
     27  <body>
     28    <p>type=date</p>
     29    <input value="2012-02-01" type="date">
     30    <input value="2012-02-01" type="date">
     31    <input value="2012-02-01" type="date">
     32    <input value="2012-02-01" type="date">
     33    <input value="2012-02-01" type="date">
     34  </body>
     35 </html>