blob: 1bd4d9097e9f125e884033fa7dc193364c093885 [file] [log] [blame]
inferno@chromium.orgd0393f22011-09-06 18:19:55 +00001<!-- The blue, yellow and green text boxes should not overlap -->
inferno@chromium.orga7f719f2011-09-06 01:45:39 +00002<html>
3<body style="font: 1em/1 Ahem, sans-serif;">
4<style>
5#test
6{
7 color: blue;
8 display: table-row;
9}
10#test::after
11{
12 content: "4578";
13 color: yellow;
14 display: table-row;
15}
16</style>
17<div id="test">
18ABCD
19</div>
20<div style="font-size: 800%; color: green">
21EFGH
22</div>
23<script>
24 document.body.offsetTop;
25 var test = document.getElementById("test");
26 test.style.fontSize = "800%";
27</script>
28</body>
29</html>