gecko-dev/layout/style/crashtests/1391577.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
241 B
HTML
Raw Normal View History

<!doctype html>
<style>
.foo input[type="range"]::-moz-range-thumb:hover {
color: red;
}
</style>
<div>
<input type="range"></input>
</div>
<script>
onload = function() {
document.querySelector('div').classList.add('foo');
}
</script>