https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f7662c3bc8a928fd55e76b83ed55ddc88a52447a authored by Marcos Cáceres on 19 March 2018, 05:46:16 UTC
user activation survives postMessage()
Tip revision: f7662c3
input-valueasdate-invalidstateerr.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_valueAsDate_INVALID_STATE_ERR</h3>
  </p>

  <hr>

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

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

  <script>
    var input_checkbox = document.getElementById("input_checkbox");
    try {
      input_checkbox.valueAsDate = new Date('2011-11-01');
      test(function() {
        assert_reached("INVALID_STATE_ERR error is not raised.");
      });
    }
    catch (e) {
      test(function() {
        assert_equals(e.code, e["INVALID_STATE_ERR"], "INVALID_STATE_ERR error is not raised.");
      });
    }

  </script>

 </body>
</html>
back to top