gecko-dev/layout/reftests/bugs/1384065.html

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

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>