tor-browser

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

nowrap-wbr-and-space-crash.html (441B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=950209">
      3 <link rel="author" title="Koji Ishii" href="kojii@chromium.org">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <style>
      7 div {
      8  white-space: nowrap;
      9  width: 3ch;
     10 }
     11 </style>
     12 <body>
     13  <div>12345<wbr> 678</div>
     14 <script>
     15 test(() => {
     16  document.body.offsetTop;
     17 });
     18 </script>
     19 </body>