gecko-dev/layout/reftests/css-invalid/fieldset/fieldset-is-barred.html
Mina Almasry 52824c3d8a Bug 717181 - Make <fieldset> invalid if they contain an invalid form control; r=mounir
This adds a CSS psuedo class to fieldset that acts much in the same way as the one
on form.
2013-08-16 20:32:47 -04:00

12 lines
281 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Fieldset is barred -->
<style>
fieldset:valid { display: none; }
</style>
<body onload="document.getElementById('f').setCustomValidity('foo'); document.documentElement.className='';">
<fieldset id="f">
</fieldset>
</body>
</html>