trisquel-icecat/icecat/layout/style/crashtests/1639533.html

15 lines
291 B
HTML

<!doctype html>
<style>
.tweak ::-moz-range-thumb:is(:hover) {
background: red;
}
</style>
<div>
<input type=range>
</div>
<script>
onload = function() {
document.querySelector("div").getBoundingClientRect();
document.querySelector("div").classList.add("tweak");
}
</script>