mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
817ee803d6
This adds a CSS psuedo class to fieldset that acts much in the same way as the one on form.
24 lines
611 B
HTML
24 lines
611 B
HTML
<!DOCTYPE html>
|
|
<!-- fieldset with one valid element and you dynamically add a barred constraint
|
|
validation element -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
fieldset:valid { 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" id="fieldset">
|
|
<input id='j' value='bar' required>
|
|
</fieldset>
|
|
</body>
|
|
</html>
|