tor-browser

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

first-letter-punctuation-dynamic.html (502B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Pseudo-Elements Test: ::first-letter modified text node with punctuation</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-pseudo/#first-letter-pseudo">
      5 <link rel="match" href="first-letter-punctuation-dynamic-ref.html">
      6 <style>
      7  #target::first-letter { color: green; }
      8 </style>
      9 <p>Only the 'A' below should be green.</p>
     10 <div id="target"> .<span>B</span></div>
     11 <script>
     12  target.offsetTop;
     13  target.firstChild.insertData(0, 'A');
     14 </script>