https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c0b9807925eb4dd59bb8cd65778748761369d90f authored by ffxbld on 21 July 2011, 17:53:16 UTC
Added tag FIREFOX_6_0b3_BUILD1 for changeset 1e49740f65a9. CLOSED TREE a=release
Tip revision: c0b9807
textarea-disabled-fieldset-1.html
<!DOCTYPE html>
<html>
  <!-- Test: if textarea has a disabled fieldset ancestor, it is barred from
             constraint validation and should not be affected by :invalid
             pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <fieldset>
        <textarea class='notinvalid' required></textarea>
      </fieldset>
    </fieldset>
  </body>
</html>
back to top