summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-valid/input/input-disabled-fieldset-1.html
blob: 114447a3f32a6595202581aa9cc73ba06a179aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <!-- Test: if input has a disabled fieldset ancestor, it is barred from
             constraint validation and should not be affected by :valid
             pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <fieldset disabled>
      <fieldset>
        <input class='notvalid'>
      </fieldset>
    </fieldset>
  </body>
</html>