This commit is contained in:
jruderman%hmc.edu 2007-12-18 06:30:20 +00:00
Родитель 50cf94dfc6
Коммит a3bafd68e3
3 изменённых файлов: 69 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,31 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
document.getElementById("div1").appendChild(document.getElementById("div2"));
}
</script>
<style type="text/css">
#s1, #s2 {
font: 8pt arial;
}
#div1 #s1, #div1 #s2 {
font-size: 20pt;
}
</style>
</head>
<body onload="boom();">
<div id="div1"></div>
<div id="div2"><span id="s1"><span id="s2">foo</span></span></div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,36 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function run()
{
var a = getComputedStyle(document.getElementById("s1"), "").listStyleType;
var b = getComputedStyle(document.getElementById("s3"), "").listStyleType;
}
</script>
<style type="text/css">
body { display: none } /* so we control the order of the ComputeListData calls */
#s1, #s2, #s3 {
-moz-image-region: auto;
list-style-image: none;
list-style-position: outside;
list-style-type: disc;
}
#s2, #s3 {
list-style-type: disc;
}
</style>
</head>
<body onload="run();">
<div id="s1"><div id="s2"><div id="s3"></div></div></div>
</body>
</html>

Просмотреть файл

@ -1,4 +1,6 @@
load 187671-1.html
load 285727-1.html
load 330998-1.html
load 383979-1.xhtml
load 383979-2.html
load 399289-1.svg