trisquel-icecat/icecat/layout/reftests/forms/button/1349646-ref.html
2025-10-06 02:35:48 -06:00

20 lines
346 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<style>
button {
padding: 0px;
border:none;
font-size: 64px;
background-color: green;
}
</style>
<div>
<button id="button1"><span>Menu1</span></button>
</div>
<script>
window.onload = () => {
button1.focus();
document.documentElement.classList.remove('reftest-wait');
}
</script>
</html>