blob: 3cd2159761bcb3efb1206b4ca5028655243e27fd (
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-required-style.css'>
<script type="text/javascript">
function addRequired()
{
document.getElementById('i').required = true;
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="addRequired(); disableReftestWait();">
<input type="text" id="i">
</body>
</html>
|