chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/transform-input-014-ref.html

<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:[email protected]">
    <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=number</p>
    <input value="613" min="0" max="1000" step="1" type="number">
    <input value="613" min="0" max="1000" step="1" type="number">
    <input value="613" min="0" max="1000" step="1" type="number">
    <input value="613" min="0" max="1000" step="1" type="number">
    <input value="613" min="0" max="1000" step="1" type="number">
  </body>
</html>