1
0
Fork 0
firefox/layout/reftests/css-required/css-required-dyn-4.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

20 lines
563 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: Remove the required attribute from an element to make it optional. -->
<link rel='stylesheet' type='text/css' href='css-required-style.css'>
<script type="text/javascript">
function removeRequired()
{
document.getElementById('i').removeAttribute('required');
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="removeRequired(); disableReftestWait();">
<input type="text" id="i" required>
</body>
</html>