empty-span-scroll.html (852B)
1 <!DOCTYPE html> 2 <html class=reftest-wait> 3 <link rel="author" title="David Shin" href="mailto:dshin@mozilla.com"> 4 <link rel="help" href="https://drafts.csswg.org/css-inline-3/#invisible-line-boxes"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1946899"> 6 <link rel="match" href="empty-span-scroll-ref.html"> 7 <style> 8 body { 9 margin: 0; 10 } 11 .relative { 12 position: relative; 13 } 14 .scroll-target { 15 position: absolute; 16 top: 0; 17 } 18 .filler { 19 height: 3000px; 20 background: red; 21 } 22 .good { 23 height: 100vh; 24 background: green; 25 } 26 </style> 27 <span><div class="filler"></div></span> 28 <span> 29 <span class="relative"> 30 <a class="scroll-target" id="target"></a> 31 </span> 32 </span> 33 <span><div class="good"></div></span> 34 <span><div class="filler"></div></span> 35 <script> 36 target.scrollIntoView(); 37 document.documentElement.className = ""; 38 </script>