gecko/layout/reftests/first-letter/379799-1.html
jruderman@hmc.edu 56c1f6e94a Add bz's reftest
2007-12-15 17:04:04 -08:00

30 lines
431 B
HTML

<!DOCTYPE html>
<html>
<head>
<style id="firstLetterSheet">
.fl:first-letter { color: red }
</style>
<script>
function boom()
{
document.getElementById("parent").className = "";
document.body.offsetWidth;
document.getElementById("test").style.position = "relative";
}
</script>
</head>
<body onload="boom()">
<div class="fl" id="parent" style="color: green">
Foo <span id="test">Bar</span>
</div>
</body>
</html>