mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
515 B
HTML
24 lines
515 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class='reftest-wait'>
|
||
|
<head>
|
||
|
<style>
|
||
|
:-moz-submit-invalid { display: none; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<script>
|
||
|
function onloadHandler()
|
||
|
{
|
||
|
document.getElementById('t').removeChild(document.forms[0]);
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
<body onload='onloadHandler();'>
|
||
|
<table id='t'>
|
||
|
<form>
|
||
|
<tr><td><input required></td></tr>
|
||
|
<tr><td><input type='submit'></td></tr>
|
||
|
</form>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|