383979-2.html 640 B

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