jruderman%hmc.edu 575ff9bfbe Add crashtests
git-svn-id: svn://10.0.0.236/trunk@248630 18797224-902f-48f8-a5cc-f745e15eee43
2008-03-27 00:24:55 +00:00

27 lines
305 B
HTML

<html>
<head>
<style>
body {
height: 40px;
-moz-column-count: 2;
}
#x {
height: 20px;
}
#y {
height: 80px;
}
</style>
<script>
function boom()
{
document.getElementById("x").style.content = "'0'";
}
</script>
</head>
<body onload="boom();"><div id="x"><div id="y"></div></div></body>
</html>