1
0
Fork 0
firefox/layout/reftests/css-required/css-required-dyn-2.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
556 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: Change an input element from required type
to a non-required type. -->
<link rel='stylesheet' type='text/css' href='css-required-style.css'>
<script type="text/javascript">
function changeType()
{
document.getElementById('i').type = 'submit';
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="changeType(); disableReftestWait();">
<input type="text" id="i" required>
</body>
</html>