gecko/layout/reftests/css-invalid/fieldset/fieldset-add-valid-with-no-element.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
547 B
HTML

<!DOCTYPE html>
<!--fieldset with no valid element and another valid one is added dynamically -->
<html class='reftest-wait'>
<head>
<style>
fieldset:valid { display: none; }
</style>
</head>
<script>
function onloadHandler()
{
document.getElementById("fieldset").appendChild(document.getElementById('i'));
document.documentElement.className = '';
}
</script>
<body onload='onloadHandler();'>
<input id='i' type='text' value='foo'>
<fieldset id="fieldset">
</fieldset>
</body>
</html>