tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

empty-span-scroll-ref.html (627B)


      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 <style>
      7 body {
      8  margin: 0;
      9 }
     10 .filler {
     11  height: 3000px;
     12  background: red;
     13 }
     14 .good {
     15  height: 100vh;
     16  background: green;
     17 }
     18 </style>
     19 <span><div class="filler"></div></span>
     20 <span><div id="target" class="good"></div></span>
     21 <span><div class="filler"></div></span>
     22 <script>
     23 target.scrollIntoView();
     24 document.documentElement.className = "";
     25 </script>