https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9c3dd5dd9c1777f3b956d4044e4b944ef749e2f5 authored by Ben Hearsum on 29 October 2012, 18:16:28 UTC
bug 705788: exclude override.ini from mac signatures. r=ted, a=lsblakk
Tip revision: 9c3dd5d
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