Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / layout / style / crashtests / 383979-2.html
blob06f900e1282186bd1d7faa9a4c0af7f7a560bfc4
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script>
5 function run()
7 var a = getComputedStyle(document.getElementById("s1"), "").listStyleType;
8 var b = getComputedStyle(document.getElementById("s3"), "").listStyleType;
11 </script>
13 <style type="text/css">
15 body { display: none } /* so we control the order of the ComputeListData calls */
17 #s1, #s2, #s3 {
18 -moz-image-region: auto;
19 list-style-image: none;
20 list-style-position: outside;
21 list-style-type: disc;
24 #s2, #s3 {
25 list-style-type: disc;
28 </style>
29 </head>
31 <body onload="run();">
33 <div id="s1"><div id="s2"><div id="s3"></div></div></div>
35 </body>
36 </html>