Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / before-content-continuation-chain.html
blob58e91bc534f00959b7b21049c29534f3e13a9544
1 <!DOCTYPE html>
2 <html>
3 <body style="font-family: Ahem; -webkit-font-smoothing: none;">
4 <!-- Test passes if A (blue box) in first line, followed by B (green box) in next line. -->
5 <style>
6 span:before {
7 display: block;
8 content: "A";
9 color: blue;
11 </style>
12 <span style="color: green"><div></div>B</span>
13 <script>
14 document.body.style.fontSize = "200px";
15 </script>
16 </body>
17 </html>