Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / first-letter-punctuation.html
blob753f5be1a1af1f57aa9b22f4bef9352a09e5a949
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 div:first-letter
7 color: green;
8 font-size: 36px;
10 </style>
11 </head>
12 <body>
13 <p>Test passes if all the T are green, as well as punctuation elements when they are adjacent to a letter (without spaces)</p>
15 <div>Test</div>
16 <div>&nbsp;Test&nbsp;</div>
18 <div>(T)est</div>
19 <div>&nbsp;(T)est</div>
20 <div>&ldquo;T&rdquo;est</div>
22 <div>&amp;Test</div>
23 <div>&nbsp;&amp;Test</div>
24 <div>T&amp;S<div>
25 <div>T&nbsp;&amp;&nbsp;S<div>
26 <div>T &amp; S<div>
28 <div>&laquo;&nbsp;S&nbsp;&raquo;</div>
29 <div>&laquo;&nbsp;S&nbsp;&raquo;&nbsp;&nbsp;&nbsp;&nbsp;</div>
31 <div>&bull; </div>
32 <div>&nbsp;&bull; &nbsp;</div>
33 </body>
34 </html>