mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-14 02:32:34 +00:00
14 lines
295 B
HTML
14 lines
295 B
HTML
<!DOCTYPE>
|
|
<html class="reftest-wait">
|
|
<script>
|
|
function onloadHandler()
|
|
{
|
|
document.getElementById('e').setCustomValidity('foo');
|
|
document.documentElement.className='';
|
|
}
|
|
</script>
|
|
<body onload="onloadHandler();">
|
|
<fieldset id='e'></fieldset>
|
|
</body>
|
|
</html>
|