gecko/layout/reftests/css-invalid/fieldset/fieldset-dynamic-invalid.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

22 lines
505 B
HTML

<!DOCTYPE html>
<!-- fieldset with one invalid element which is made invalid dynamically -->
<html class='reftest-wait'>
<head>
<style>
fieldset:invalid { display: none; }
</style>
</head>
<script>
function onloadHandler()
{
document.getElementById('i').value = '';
document.documentElement.className = '';
}
</script>
<body onload='onloadHandler();'>
<fieldset id="fieldset">
<input id='i' value='foo' required>
</fieldset>
</body>
</html>