Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / first-letter-set-text.html
blobde571c1002cc59f075676c6705f2ee35c2cc8cc0
1 <style>
2 #target { font-family: Ahem; font-size: 50px; background-color: green; height: 50px; width: 50px; }
3 #target:first-letter { color: red; }
4 </style>
5 <div id="target">Lorem</div>
6 <script>
7 var target = document.getElementById("target");
8 target.offsetTop;
9 var text = target.firstChild;
10 target.innerHTML = "ipsum";
11 target.removeChild(target.firstChild);
12 </script>