blob: a8b5fa81fc69954163e05b2c6cf7b524590a1504 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/ahem.js"></script>
<p>The orange, blue, yellow and green text boxes should not overlap.</p>
<style>
#test::before {
content: "1234";
color: orange;
}
#test::after {
content: "4578";
color: yellow;
}
ruby, div {
font: 1em/1 Ahem, sans-serif;
}
</style>
<ruby id="test" style="display:block; color:blue;">
ABCD
</ruby>
<div style="font-size:500%; color:green;">
EFGH
</div>
<script>
document.body.offsetTop;
var test = document.getElementById("test");
test.style.fontSize = "500%";
</script>