tor-browser

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

overflow-wrap-break-word-white-space-crash.html (756B)


      1 <!DOCTYPE html>
      2 <title>CSS Text Test: A combination of `overflow-wrap: break-word` and `white-space` should not crash</title>
      3 <link rel="help" href="https://crbug.com/988832">
      4 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <style>
      8 div {
      9  width: 10ch;
     10  border: 1px blue solid;
     11  overflow-wrap: break-word;
     12 }
     13 inline-block {
     14  display: inline-block;
     15  position: relative;
     16  width: 3ch;
     17  height: 1em;
     18  background: orange;
     19 }
     20 </style>
     21 <body>
     22 <div>
     23  123 56 <span style="white-space: pre"><inline-block></inline-block> <span style="white-space: normal">Flash</span></span> and
     24 </div>
     25 <script>
     26 test(() => { });
     27 </script>
     28 </body>