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