tor-browser

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

first-letter-dynamic-003b.xht (842B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>
      2   <title>CSS Test: :first-letter</title>
      3   <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" />
      4   <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
      5   <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter" />
      6   <link rel="match" href="first-letter-dynamic-003-ref.xht"/>
      7   <meta name="flags" content="dom" />
      8   <style type="text/css">
      9     div#x:first-letter { color: blue; float: none }
     10   </style>
     11 </head>
     12 <body>
     13 <div id="x">x</div>
     14 <script type="text/javascript">
     15   document.body.offsetWidth;
     16   var div = document.getElementById("x");
     17   div.id = "y";
     18   div.firstChild.data = "Text";
     19 </script>
     20 
     21 
     22 
     23 </body></html>