https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 426d4707da2b60265fba7e5112ccbda72b113580 authored by Anne van Kesteren on 24 April 2018, 09:28:12 UTC
nit and use assert_equals
Tip revision: 426d470
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