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.
22 lines
505 B
HTML
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>
|