https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 46b2c83e8790ad6e96bb45f652379716a25294fc authored by ffxbld on 21 July 2011, 21:45:55 UTC
Added tag FENNEC_6_0b3_BUILD2 for changeset 5735ffc7bed2. CLOSED TREE a=release
Tip revision: 46b2c83
textarea-fieldset-legend.html
<!DOCTYPE html>
<html>
  <!-- Test: if textarea has a disabled fieldset ancestor, but is in the first
             legend, it is not barred from constraint validation and should be
             affected by :invalid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <legend>
        <textarea class='invalid' required></textarea>
      </legend>
    </fieldset>
  </body>
</html>
back to top