tor-browser

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

text-overflow-ellipsis-hyphen.html (503B)


      1 <!DOCTYPE html>
      2 <title>Ellipsizing hyphens should not crash</title>
      3 <link rel="author" href="kojii@chromium.org">
      4 <link rel="help" href="https://drafts.csswg.org/css-ui-3/#ellipsing-details">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <style>
      8 div {
      9  width: 0.1ch;
     10  text-overflow: ellipsis;
     11  overflow: hidden;
     12 }
     13 </style>
     14 <body>
     15  <div dir="rtl">12345&shy;999</div>
     16 <script>
     17 test(() => {}, 'No crash or DCHECK failure');
     18 </script>
     19 </body>