Upstream version 11.39.266.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / invalid / invalidSVGFont.html
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
5     <style type="text/css">
6     @font-face {
7         font-family: My DejaVu Sans Mono;
8         src: url(resources/svgFontWrongNamespace.svg#MyDejaVuSansMono) format("svg"), local("DejaVu Sans Mono");
9     }
10     .customFont {
11         font-family: My DejaVu Sans Mono;
12     }
13     </style>
14 </head>
15 <body>
16 <p>Test case for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=18862">18862</a>: Crash while handling SVG font in the wrong namespace imported with @font-face</p>
17 <script>
18 if (window.testRunner)
19     testRunner.dumpAsText();
20 </script>
21 <p class="customFont"> PASSED (did not crash or ASSERT)</p>
22 </body></html>