https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a15b89716891c56c0abc22905f5dd120a610e3a4 authored by ffxbld on 15 August 2012, 05:31:42 UTC
Added FENNEC_15_0b5_RELEASE FENNEC_15_0b5_BUILD1 tag(s) for changeset 760e45712f64. DONTBUILD CLOSED TREE a=release
Tip revision: a15b897
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