Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/widgets/input-checkbox-appearance-none-dynamic-crash.html - WPT Dashboard Interop Dashboard
<style>
input:checked {
appearance: none;
}
input:required {
border-bottom-style: groove;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
a.getBoundingClientRect();
a.defaultChecked = true;
a.getBoundingClientRect();
})
</script>
<input id="a" required="required" type="radio">