Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: LayoutTests/fast/invalid/invalidSVGFont.html

Issue 656913006: Remove SVG fonts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests for landing Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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("s vg"), 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">188 62</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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698