blob: 58e91bc534f00959b7b21049c29534f3e13a9544 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body style="font-family: Ahem; -webkit-font-smoothing: none;">
<!-- Test passes if A (blue box) in first line, followed by B (green box) in next line. -->
<style>
span:before {
display: block;
content: "A";
color: blue;
}
</style>
<span style="color: green"><div></div>B</span>
<script>
document.body.style.fontSize = "200px";
</script>
</body>
</html>