383979-2.html (613B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 5 function run() 6 { 7 var a = getComputedStyle(document.getElementById("s1"), "").listStyleType; 8 var b = getComputedStyle(document.getElementById("s3"), "").listStyleType; 9 } 10 11 </script> 12 13 <style type="text/css"> 14 15 body { display: none } /* so we control the order of the ComputeListData calls */ 16 17 #s1, #s2, #s3 { 18 list-style-image: none; 19 list-style-position: outside; 20 list-style-type: disc; 21 } 22 23 #s2, #s3 { 24 list-style-type: disc; 25 } 26 27 </style> 28 </head> 29 30 <body onload="run();"> 31 32 <div id="s1"><div id="s2"><div id="s3"></div></div></div> 33 34 </body> 35 </html>