tenfourfox/layout/reftests/first-letter/379799-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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>