зеркало из https://github.com/mozilla/gecko-dev.git
14 строки
329 B
HTML
14 строки
329 B
HTML
<!DOCTYPE>
|
|
<html class="reftest-wait">
|
|
<script>
|
|
function onloadHandler()
|
|
{
|
|
document.getElementById('e').setCustomValidity('foo');
|
|
document.getElementById('e').focus();
|
|
}
|
|
</script>
|
|
<body onload="onloadHandler();">
|
|
<input id='e' onfocus="document.documentElement.className='';">
|
|
</body>
|
|
</html>
|