blob: 6ef36f9f09b169903cf7cb3e16f6ad6cea030b57 [file] [log] [blame]
<!-- The blue and green text boxes should not overlap -->
<html>
<script src="../../resources/ahem.js"></script>
<body style="font: 1em/1 Ahem, sans-serif;">
<style>
div::before {
content: "ABCD";
color: blue;
display: table-row;
}
</style>
<div id="test" style="color: green">ABC</div>
<script>
document.getElementById('test').style.fontSize= "800%";
</script>
</body>
</html>