diff options
Diffstat (limited to 'layout/reftests/text-svgglyphs/svg-in-ot-bitmap-1-ref.html')
-rw-r--r-- | layout/reftests/text-svgglyphs/svg-in-ot-bitmap-1-ref.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/text-svgglyphs/svg-in-ot-bitmap-1-ref.html b/layout/reftests/text-svgglyphs/svg-in-ot-bitmap-1-ref.html new file mode 100644 index 0000000000..c93fc86c94 --- /dev/null +++ b/layout/reftests/text-svgglyphs/svg-in-ot-bitmap-1-ref.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <title>SVG-in-OT bitmap issue</title> + <style> + @font-face { + font-family: test; + src: url("resources/svg-bitmap.ttf"); + } + span { + white-space: pre; + } + .a { + background: red; + } + .b { + background: yellow; + } + .c { + background: blue; + } + </style> +</head> +<body> + <div style="font: 32px/1 test, serif"> + x <span class=a> </span><span class=b> </span><span class=c> </span> x + </div> +</body> +</html> |