Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / crash-multiple-family-fontface.html
blobeca8cb6739b8b956db900b1830fa880b1d170874
1 <html>
2 <head>
3 <style>
4 @font-face {
5 font-family:morris,xx;
6 /* Important: src cannot be local to trigger the crash */
7 src:url(doesNotExist.ttf);
9 body {
10 font:12px morris;
13 </style>
14 <script>
15 if (window.testRunner)
16 window.testRunner.dumpAsText();
17 </script>
18 </head>
19 <body>
20 <p>Try to reference a custom font (@font-face) which was defined with more than 1 font-family.</p>
21 <p>PASS if does not crash</p>
22 </body>
23 </html>