https://github.com/mozilla/gecko-dev
Raw File
Tip revision: af7f85a285295c23b8596d5b83c9b7ce762b6002 authored by Nick Thomas on 13 May 2013, 22:54:51 UTC
Move the FIREFOX_21_0_RELEASE tag back to FIREFOX_21_0_BUILD3 to reflect what we shipped a=release
Tip revision: af7f85a
fieldset-valid.html
<!DOCTYPE html>
<html>
  <!-- Test: fieldset is always barred from constraint validation.
             It should not be affected by :invalid pseudo-class. -->
  <style>
    fieldset { background-color: green; }
    fieldset:invalid { background-color: red; }
  </style>
  <body>
    <fieldset></fieldset>
  </body>
</html>
back to top