gecko/layout/reftests/css-invalid/fieldset/fieldset-with-invalid-element-add-barred-dynamic.html
Mina Almasry 817ee803d6 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

24 lines
580 B
HTML

<!DOCTYPE html>
<!-- fieldset with one valid element and you dynamically add a barred constraint
validation element -->
<html>
<head>
<style>
fieldset:invalid { display:none }
</style>
<script>
function onLoadHandler()
{
document.getElementById("fieldset").appendChild(document.getElementById('i'));
document.documentElement.className='';
}
</script>
</head>
<body onload='onLoadHandler();'>
<input id='i' value='foo' readonly>
<fieldset id="fieldset">
<input required>
</fieldset>
</body>
</html>