https://github.com/mozilla/gecko-dev
Raw File
Tip revision: f5c8642f3af2f2996f5545a32c9e59d6fc439e45 authored by B2G Bumper Bot on 21 September 2015, 11:40:51 UTC
Bumping manifests a=b2g-bump
Tip revision: f5c8642
form-invalid-and-barred-remove-barred.html
<!DOCTYPE html>
<!-- form with one invalid element and a barred for constraint 
validation element then you remove the second element -->
<html class='reftest-wait'>
  <head>
    <style>
      form:invalid { display: none; }
    </style>
  </head>
  <script>
    function onloadHandler()
    {
      document.forms[0].removeChild(document.getElementById('j'));
      document.documentElement.className = '';
    }
  </script>
  <body onload='onloadHandler();'>
    <form>
      <input required>
      <input id='j' value='foo' readonly>
    </form>
  </body>
</html>
back to top