tor-browser

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

quotes-first-line.html (527B)


      1 <!doctype html>
      2 <meta charset=utf-8>
      3 <title>CSS-content test: first line with quotes honor color</title>
      4 <link rel="author" title="Minseong Kim" href="jja08111@gmail.com">
      5 <link rel="match" href="reference/quotes-first-line-ref.html">
      6 <link rel=help href="https://drafts.csswg.org/css-content/#quotes">
      7 <style>
      8 body { font: 32px serif; }
      9 div::first-line { color: red; }
     10 </style>
     11 <p>Test passes if color of quote marks matches the text color on each line.</p>
     12 <div>
     13  This is <q>quoted</q>
     14  <br>
     15  This is <q>quoted</q>
     16 </div>