trisquel-icecat/icecat/layout/reftests/generated-content/dynamic-content.html

14 lines
214 B
HTML

<!doctype html>
<style>
div::before {
content: none;
}
.foo::before {
content: "Woof";
}
</style>
<div></div>
<script>
document.body.offsetTop;
document.querySelector('div').classList.add('foo');
</script>