1
0
Fork 0
firefox/testing/web-platform/tests/css/css-inline/empty-span-scroll-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
627 B
HTML

<!DOCTYPE html>
<html class=reftest-wait>
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#invisible-line-boxes">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1946899">
<style>
body {
margin: 0;
}
.filler {
height: 3000px;
background: red;
}
.good {
height: 100vh;
background: green;
}
</style>
<span><div class="filler"></div></span>
<span><div id="target" class="good"></div></span>
<span><div class="filler"></div></span>
<script>
target.scrollIntoView();
document.documentElement.className = "";
</script>