mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
556 B
HTML
22 lines
556 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<!-- Test: Change an input element from non-required type
|
||
|
to a required type. -->
|
||
|
<link rel='stylesheet' type='text/css' href='css-required-style.css'>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
function changeType()
|
||
|
{
|
||
|
document.getElementById('i').type = 'text';
|
||
|
}
|
||
|
function disableReftestWait()
|
||
|
{
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<body onload="changeType(); disableReftestWait();">
|
||
|
<input type="submit" id="i" required>
|
||
|
</body>
|
||
|
</html>
|