summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/first-letter-set-text.html
blob: de571c1002cc59f075676c6705f2ee35c2cc8cc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<style>
    #target { font-family: Ahem; font-size: 50px; background-color: green; height: 50px; width: 50px; }
    #target:first-letter { color: red; }
</style>
<div id="target">Lorem</div>
<script>
    var target = document.getElementById("target");
    target.offsetTop;
    var text = target.firstChild;
    target.innerHTML = "ipsum";
    target.removeChild(target.firstChild);
</script>