Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / font-face-cascade-order.svg
bloba9ce9188d35c7440f884067cca140dce2608f0fb
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <style type="text/css" media="all">
3 /* These rules intentionally use 'incorrect' fallback families
4 So that if the font-face defined font can't be found the test fails. */
5 #test {
6 font: 2.3cm "test", cursive;
8 @font-face {
9 font-family: "test";
10 src: url(../../resources/Ahem.ttf);
12 </style>
13 <defs>
14 <font-face id="test" font-family="test">
15 <font-face-src>
16 <font-face-name name="Courier" />
17 </font-face-src>
18 </font-face>
19 </defs>
20 <text id="test" x="10" y="2cm">ONLY BLOCKS</text>
21 <text x="30" y="3cm">The text above should only show Ahem blocks</text>
22 </svg>