23604-1.html (550B)
1 <html class="reftest-wait"> 2 <head> 3 <style type="text/css"> 4 p:first-line { font-family: monospace } 5 p:first-letter { font-family: sans-serif } 6 </style> 7 <script> 8 function tweak() { 9 document.body.style.background = 'lightblue'; 10 document.documentElement.className = ""; 11 } 12 </script> 13 </head> 14 <body onload="tweak();"> 15 <p style="width: 100px"><span>The first letter of this paragraph should be 16 in sans-serif while the first-line should be in monospace.</span></p> 17 </body> 18 </html>