blob: 6ab8a32e34aeb7ff689c57c539b15caf0b9dd1e8 (
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: Remove the required attribute from an element to make it optional. -->
<link rel='stylesheet' type='text/css' href='css-required-style.css'>
<script type="text/javascript">
function removeRequired()
{
document.getElementById('i').removeAttribute('required');
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="removeRequired(); disableReftestWait();">
<input type="text" id="i" required>
</body>
</html>
|