tor-browser

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

webkit-text-fill-color-property-006-ref.html (670B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>webkit-text-fill-color on text-overflow ellipsis reference</title>
      4 <link rel="author" title="Jeremy Chen" href="jeremychen@mozilla.com">
      5 <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      6 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      7 <style>
      8 div {
      9  font-size: 10px;
     10  overflow: hidden;
     11  text-overflow: ellipsis;
     12  width: 150px;
     13  color: green;
     14 }
     15 span {
     16  font-family: Ahem;
     17  font-size: 30px;
     18 }
     19 </style>
     20 <body>
     21 <p>Test passes if there is a <strong>green ellipsis</strong> after "TestChecks".</p>
     22 <div>
     23  <span>TestChecksThatTextColorAndEllipsisColorShouldBeTheSame</span>
     24 </div>
     25 </body>