jruderman%hmc.edu 89a4e0c1bd Add crashtests for two related bugs whose bug numbers happen to be permutations of each other.
git-svn-id: svn://10.0.0.236/trunk@242418 18797224-902f-48f8-a5cc-f745e15eee43
2008-01-05 05:43:47 +00:00

22 lines
376 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<style id="sty">
html::before {
content: "before text";
float: right;
}
</style>
<script>
function boom()
{
var sty = document.getElementById("sty");
sty.appendChild(document.createTextNode(" "));
document.documentElement.removeAttribute("class");
}
setTimeout(boom, 30);
</script>
</html>