tor-browser

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

overflow-wrap-002-ref.html (669B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text Test Reference File</title>
      4 <link rel="author" title="Intel" href="http://www.intel.com">
      5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      6 <style>
      7  #ref {
      8    border: 5px solid orange;
      9    font: 20px/1 Ahem;
     10    width: 200px;
     11  }
     12  #test {
     13    border: 5px solid blue;
     14    font: 20px/1 Ahem;
     15    width: 200px;
     16  }
     17 </style>
     18 <body>
     19  <p class="instructions">Test passes if the black box overflows the blue border box, but fits within the orange border box.</p>
     20  <p id="ref">FillerText<br>FillerText<br>FillerText<br>FillerText</p>
     21  <p id="test">FillerTextFillerTextFillerTextFillerText</p>
     22 </body>