https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 21f1c08f6e5d4ead08f51968aa6246b2c54b7f15 authored by Geoffrey Sneddon on 10 April 2018, 07:46:22 UTC
Fix #10388: Make resources/test use the upstream config
Tip revision: 21f1c08
form-checkvalidity.html
<!DOCTYPE HTML>
<html>
 <head>
  <title>Forms</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body>
  <p>
    <h3>Form_checkValidity</h3>
  </p>

  <hr>

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

  <form method="post"
      enctype="application/x-www-form-urlencoded"
      action=""
      id="input_form">
  <p><input type=hidden name="custname"></p>
  <p><input type=hidden name="custtel"></p>
  <p><input type=hidden name="custemail"></p>

  </form>
  <script>

    var form = document.getElementById("input_form");

    try
    {
      var ret = form.checkValidity();

      test(function() {
        assert_equals(ret, true, "calling of checkValidity method is failed.");
      });
    }
    catch (e) {
      test(function() {
        assert_unreached("Error is raised.");
      });
    }

  </script>

 </body>
</html>
back to top