Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / font-face-character-fallback-expected.html
blob626bb0490ea67d17805074d4422d5b27df6ff6de
1 <html>
2 <head>
3 <style>
4 span.courier {
5 font-family: 'Courier', 'Courier New';
7 span.helvetica {
8 font-family: 'Helvetica', 'Arial';
10 span.times {
11 font-family: 'Times, 'Times New Roman';
13 span {
14 font-size: 30px;
16 </style>
17 </head>
18 <body>
19 <p>
20 You should see each font name in that font:
21 </p>
22 <span class="helvetica">HELVETICA</span>
23 <span class="courier">courier</span>
24 <span class="courier"><b>COURIER</b></span>
25 <span class="times"><b>times</b></span>
26 </body>
27 </html>