Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t051202-c24-first-lttr-00-b.html
bloba55bbbe3d7c74b04f75f1a21c0133c955f943de0
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: first-letter</title>
5 <style type="text/css">
6 body { color: blue; }
7 p:first-letter {color: green;}
8 .two:first-letter {font-size: 200%;}
9 p.three:first-letter {font-size: 350%;}
10 </style>
11 <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter" title="5.12.2 The :first-letter pseudo-element">
12 </head>
13 <body>
14 <p>
15 The <strong>first letter</strong> of this paragraph, and only that
16 one, should be <strong>green</strong>. If this precise combination
17 does not occur, then the user agent has failed this test.
18 </p>
19 <p class="two">
20 The <strong>first letter</strong> of this paragraph, and only that
21 one, should be in a <strong>larger</strong> font size, as well as
22 <strong>green</strong>. If this precise combination does not occur,
23 then the user agent has failed this test.
24 </p>
25 <p class="three">
26 &quot;The <strong>first two characters</strong> in this paragraph (a
27 double-quote mark and a capital 'T') should be in a <strong>much
28 larger</strong> font size than the rest of the paragraph, and
29 <strong>green</strong>. If this precise combination does not occur,
30 then the user agent has failed this test.
31 </p>
32 </body>
33 </html>