https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5ca162bdba5cfb072c686d36ab3d7941657cb4a5 authored by ffxbld on 08 February 2012, 13:55:47 UTC
Added tag FIREFOX_10_0_1_BUILD1 for changeset c581b36e7a12. CLOSED TREE a=release
Tip revision: 5ca162b
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