mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-06 00:19:08 +00:00
14 lines
281 B
HTML
14 lines
281 B
HTML
<!DOCTYPE>
|
|
<html class="reftest-wait">
|
|
<script>
|
|
function onloadHandler()
|
|
{
|
|
document.getElementById('e').setCustomValidity('foo');
|
|
document.documentElement.className='';
|
|
}
|
|
</script>
|
|
<body onload="onloadHandler();">
|
|
<input id='e'>
|
|
</body>
|
|
</html>
|