blob: 746e045abf4655c9f6e9be107cab9d32e6270d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: Add the required attribute to an element to make it required. -->
<link rel='stylesheet' type='text/css' href='css-optional-style.css'>
<script type="text/javascript">
function addRequired()
{
document.getElementById('i').required = true;
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="addRequired(); disableReftestWait();">
<input id="i">
</body>
</html>
|