| Index: LayoutTests/svg/custom/svg-fonts-unloaded-segment.html
|
| diff --git a/LayoutTests/svg/custom/svg-fonts-unloaded-segment.html b/LayoutTests/svg/custom/svg-fonts-unloaded-segment.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4a17fcd7c6dd6a01b4d06a8d4827b942d9594a0f
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/custom/svg-fonts-unloaded-segment.html
|
| @@ -0,0 +1,27 @@
|
| +<html>
|
| +<head>
|
| +<style>
|
| + /* This font-face should not affect rendering */
|
| + @font-face {
|
| + font-family: f;
|
| + src: url("resources/no-latin-glyph-font.svg#Font") format(svg);
|
| + unicode-range: U+3042;
|
| + }
|
| +
|
| + @font-face {
|
| + font-family: f;
|
| + src: url("resources/graffiti.svg#SVGraffiti") format(svg);
|
| + }
|
| +
|
| + #test {
|
| + font-family: f, sans-serif;
|
| + font-size: 40px;
|
| + }
|
| +</style>
|
| +</head>
|
| +<body>
|
| +
|
| +<p id='test'>This text should be rendered with SVGraffiti.</p>
|
| +
|
| +</body>
|
| +</html>
|
|
|