Fasten your crashtests!

This commit is contained in:
jruderman@hmc.edu 2007-12-15 20:01:48 -08:00
parent 00cd420373
commit bc4b275a27
4 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
#a {
-moz-column-count: 2;
-moz-column-width: 100px;
float: left;
border: 2px solid magenta;
height: 200px;
}
#b {
-moz-column-count: 2;
-moz-column-width: 100px;
float: left;
border: 2px solid green;
height: 300px;
}
</style>
</head>
<body onload="document.getElementById('span').style.display = '-moz-inline-grid';">
<div id="a"><div id="b"></div><optgroup label="foo"><span id="span"></span></optgroup></div>
</body>
</html>

View File

@ -0,0 +1,19 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
body {
-moz-column-count: 2;
-moz-column-width: 100px;
height: 200px;
}
#b {
float: left;
height: 300px;
}
</style>
</head>
<body onclick="document.getElementById('span').style.display = 'block';">
<img src="../../../testing/crashtest/images/tree.gif" width="1070" height="335" id="b"/>
<optgroup label="foo"><span id="span"></span></optgroup>
</body>
</html>

View File

@ -0,0 +1,25 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
body {
-moz-column-count: 2;
-moz-column-width: 100px;
height: 200px;
}
#b {
float: left;
height: 300px;
}
.og:before {
display: block;
content: "foo";
}
</style>
</head>
<body onload="document.getElementById('span').style.display = 'block';">
<img src="../../../testing/crashtest/images/tree.gif" width="1070" height="335" id="b"/>
<div class="og"><span id="span"></span></div>
</body>
</html>

View File

@ -24,3 +24,6 @@ load 399132-1.xhtml
load 399687-1.html
load 403175-1.html
load 403245-1.html
load 403569-1.xhtml
load 403569-2.xhtml
load 403569-3.xhtml