tor-browser

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

23604-2.html (797B)


      1 <html class="reftest-wait">
      2 <head>
      3 <style type="text/css">
      4 	body {
      5 		font-family: sans-serif; }
      6 	
      7 	.a li:first-letter {
      8 		font-family: serif;
      9 		font-weight: bold; }
     10 	
     11 	.b li:first-letter {
     12 		color: red; }
     13 	
     14 	.c li:first-letter {
     15 		background: red; }
     16 	
     17 	.d li:first-letter {
     18 		font-size: 1.5em; }
     19 </style>
     20 <script>
     21  function tweak() {
     22    document.body.style.background = 'lightblue';
     23    document.documentElement.className = "";
     24  }
     25 </script>
     26 </head>
     27 
     28 <body onload="tweak();">
     29 <ul class="a">
     30 	<li><a>Lorem ipsum dolor sit amet</a></li>
     31 </ul>
     32 <ul class="b">
     33 	<li><del>Lorem ipsum dolor sit amet</del></li>
     34 </ul>
     35 <ul class="c">
     36 	<li><em>Lorem ipsum dolor sit amet</em></li>
     37 </ul>
     38 <ul class="d">
     39 	<li><span>Lorem ipsum dolor sit amet</span></li>
     40 </ul>
     41 </body>
     42 </html>