tor-browser

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

overflow-wrap-anywhere-007.html (1001B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text Test: overflow-wrap - anywhere (basic)</title>
      4 <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
      5 <link rel="help" title="5.5. Overflow Wrapping: the overflow-wrap/word-wrap property " href="https://drafts.csswg.org/css-text-3/#overflow-wrap-property">
      6 <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-anywhere">
      7 <link rel="match" href="overflow-wrap-001-ref.html">
      8 <meta name="flags" content="ahem">
      9 <meta name="assert" content="The 'overflow-wrap' property set 'anywhere' breaks the word at an arbitrary point">
     10 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     11 <style>
     12  #test {
     13    border: 5px solid orange;
     14    font: 20px/1 Ahem;
     15    overflow-wrap: anywhere;
     16    width: 200px;
     17  }
     18 </style>
     19 <body>
     20  <p class="instructions">Test passes if the black box is within the orange box.</p>
     21  <p id="test">FillerTextFillerTextFillerTextFillerText</p>
     22 </body>