Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / svg-fonts-with-no-element-reference.html
blobd37163f7423088a5829f66d901d9567cbcebcb81
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
4 <head>
5 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
6 <!-- to correct the unsightly Flash of Unstyled Content. http://www.bluerobot.com/web/css/fouc.asp -->
7 <script type="text/javascript"></script>
9 <style type="text/css" media="all">
10 @font-face {
11 font-family: 'SVGraffiti-First';
12 /* URI doesn't have an fragment identifier - we should choose a first font. */
13 src: url("resources/graffiti.svg") format(svg)
16 @font-face {
17 font-family: 'SVGraffiti-Second';
18 src: url("resources/graffiti-with-empty-first-font.svg#SVGraffiti") format(svg)
21 p.first {
22 font: 0.5cm "SVGraffiti-First";
25 p.second {
26 font: 0.5cm "SVGraffiti-Second";
28 </style>
29 </head>
31 <body>
32 <p class="first">This text should be rendered with a first font.</p>
33 <p class="second">This text should be rendered with a second font.</p>
34 </body>
36 </html>