https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 37847586171cc8ecff44292e6c3f37e873f008ec authored by Henrik Boström on 06 April 2018, 09:24:00 UTC
Fix RTCPeerConnection-track-stats.https.html flake.
Tip revision: 3784758
transform-input-008-ref.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <style>
      input {
        margin: 10px;
        position: relative;
      }
      p + input + input {
        left: -10px;
      }
      p + input + input + input {
        left: 10px;
      }
      p + input + input + input + input {
        top: -10px;
      }
      p + input + input + input + input + input {
        top: 10px;
      }
    </style>
  </head>
  <body>
    <p>type=datetime</p>
    <input value="2012-02-01 17:28Z" type="datetime">
    <input value="2012-02-01 17:28Z" type="datetime">
    <input value="2012-02-01 17:28Z" type="datetime">
    <input value="2012-02-01 17:28Z" type="datetime">
    <input value="2012-02-01 17:28Z" type="datetime">
  </body>
</html>
back to top