blob: 5eebe244a7ec857c6c9550e8ee27dab6452a144f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!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>
|