https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b7a7e2a5997edbc534e703776e69712b1a5187a2 authored by ffxbld on 23 August 2012, 21:55:37 UTC
Added FENNEC_15_0b7_RELEASE FENNEC_15_0b7_BUILD1 tag(s) for changeset b59e022e7bfe. DONTBUILD CLOSED TREE a=release
Tip revision: b7a7e2a
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