https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 071abd6eb9e449ed26709feafd4bf34adc462a7f authored by B2G Bumper Bot on 21 July 2014, 23:56:24 UTC
Bumping manifests a=b2g-bump
Tip revision: 071abd6
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