https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 988503ce0658e4f1b072d76bfe34ebdc8336d028 authored by Luke Bjerring on 19 March 2018, 16:57:43 UTC
Handle options for add_untested_idls
Tip revision: 988503c
input-height.html
<!DOCTYPE HTML>
<html>
 <head>
  <title>Forms</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body>
  <p>
    <h3>input_height</h3>
  </p>

  <hr>

  <div id="log"></div>

  <form method="post"
      enctype="application/x-www-form-urlencoded"
      action=""
      name="input_form">
  <p><input type='image' id='input_text'></p>
  </form>

  <script>

    var input_text = document.getElementById("input_text");
    input_text.height = 30;

    if (typeof(input_text.height) == "number") {
      test(function() {
        assert_equals(input_text.height, 30, "formTarget attribute is not correct.");
      });
    } else {
      test(function() {
        assert_unreached("height attribute is not exist.");
      });
    }

  </script>

 </body>
</html>
back to top