summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/input-height.html
blob: dea4f41765284eb65d8c98cebc5782eb58f7f16e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!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>