tor-browser

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

scrollable-overflow-empty-newline-span.html (649B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <link rel="author" title="David Shin" href="dshin@mozilla.com">
      4 <link rel="help" href="bugzilla.mozilla.org/show_bug.cgi?id=1940938">
      5 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      6 <p>Test passes if there is a filled green square.</p>
      7 <div id="dut" style="overflow: hidden; height: 100px; width: 100px; background: red;">
      8  <div style="width: 100px; height: 100px; background: green;"></div>
      9  <div style="font-size: 200px;"><span>
     10  </span></div>
     11 </div>
     12 <script>
     13 onload = function () {
     14  dut.scrollTop = 100;
     15  document.documentElement.className = "";
     16 }
     17 </script>
     18 </html>