blob: a9d5c2c1c05fb6869cc6c94f50f5dedced6cd4b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html class='reftest-wait'>
<head>
<style>
:-moz-submit-invalid { display: none; }
</style>
</head>
<script>
function onloadHandler()
{
document.forms[0].appendChild(document.getElementById('b'));
document.documentElement.className = '';
}
</script>
<body onload='onloadHandler();'>
<button id='b' type='submit'></button>
<form>
<input required>
</form>
</body>
</html>
|