tor-browser

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

webkit-text-fill-color-property-005.html (886B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>webkit-text-fill-color should not take effect while rendering text-decoration underline</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="help" href="https://compat.spec.whatwg.org/#the-webkit-text-fill-color">
      7 <meta name="assert" content="The color of text-decoration underline should be green">
      8 <link rel="match" href="webkit-text-fill-color-property-005-ref.html">
      9 <style type="text/css">
     10 p {
     11  color: green;
     12 }
     13 p.underline {
     14  text-decoration: underline;
     15  -webkit-text-fill-color: red
     16 }
     17 </style>
     18 <div><p>Pass if text underline is green!!!</p></div>
     19 <div><p class="underline">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p></div>