gecko-dev/layout/reftests/generated-content/dynamic-content.html
Emilio Cobos Álvarez 7651afbdb1 Bug 1376352: Test. r=heycam
MozReview-Commit-ID: K0QCJgwhEMN

--HG--
extra : rebase_source : 64e8e14fd63fb161ba063756ec1062262ffc8c66
2017-07-03 11:09:44 +02:00

15 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>