This commit is contained in:
jruderman@hmc.edu 2007-12-15 18:40:51 -08:00
Родитель 351d1035db
Коммит 237bd6b5db
2 изменённых файлов: 31 добавлений и 0 удалений

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

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var s = document.getElementById("s");
var t = document.getElementById("t");
s.parentNode.removeChild(s);
t.style.display = "none";
}
</script>
<style id="s">
.float { float: right; height: 1em; }
</style>
<style>
#t { border: 1px solid green; }
</style>
</head>
<body onload="boom();">
<div style="-moz-column-count: 2;"><div id="t" class="float"></div></div>
</body>
</html>

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

@ -22,6 +22,7 @@ load 388709-1.html
load 390050-1.html
load 390050-2.html
load 390050-3.html
load 390762-1.html
load 393758-1.xhtml
load 393906-1.html
load 404204-1.html