blob: bfa2660151ded58461fda8645cae04215a2f16fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<!-- fieldset with one valid element which is made valid dynamically -->
<html>
<head>
<style>
fieldset:valid {display: none;}
</style>
</head>
<script>
function onloadHandler()
{
document.getElementById('i').value = 'foo';
document.documentElement.className = '';
}
</script>
<body onload="onloadHandler();">
<fieldset id="fieldset">
<input id='i' required>
</fieldset>
</body>
</html>
|