367489-1.html (249B)
1 <html> 2 <head> 3 4 <style> 5 #fl:first-line { } 6 </style> 7 8 <script> 9 function boom() 10 { 11 document.getElementById("s").style.overflow = "auto"; 12 } 13 </script> 14 15 </head> 16 <body onload="boom();"> 17 18 <div id="fl"> 19 <b><span id="s">Foo</a></b> 20 </div> 21 22 </body> 23 </html>