зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
228 B
HTML
15 строки
228 B
HTML
|
<!doctype html>
|
||
|
<style>
|
||
|
div {
|
||
|
display: none;
|
||
|
}
|
||
|
div::before {
|
||
|
content: "Should appear";
|
||
|
}
|
||
|
</style>
|
||
|
<div></div>
|
||
|
<script>
|
||
|
document.documentElement.offsetTop;
|
||
|
document.querySelector('div').style.display = "block";
|
||
|
</script>
|