mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
13 lines
339 B
HTML
13 lines
339 B
HTML
<!DOCTYPE>
|
|
<html class="reftest-wait">
|
|
<script>
|
|
function onloadHandler()
|
|
{
|
|
document.getElementById('e').setCustomValidity('foo');
|
|
document.getElementById('e').focus();
|
|
}
|
|
</script>
|
|
<body onload="onloadHandler();">
|
|
<button id='e' onfocus="document.documentElement.className='';"></button>
|
|
</body>
|
|
</html>
|