423676-1.html (505B)
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 5 <title>Testcase for bug 423676</title> 6 <script> 7 function boom() { 8 document.getElementById("a").style.fontWeight='bold'; 9 document.getElementById("d").style.fontWeight='bold'; 10 } 11 </script> 12 </head> 13 <body onload="boom();"> 14 <pre><span id="a">A</span> 15 ‏B 16 C 17 </pre> 18 <pre><span id="d">D</span> 19 ‏ 20 E 21 </pre> 22 </body> 23 </html>