mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
563 B
HTML
21 lines
563 B
HTML
|
<!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>
|