| Index: LayoutTests/fast/text/emoji-web-font.html
|
| diff --git a/LayoutTests/fast/text/emoji-web-font.html b/LayoutTests/fast/text/emoji-web-font.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f403fdff01b2d549a8e8f3b00acabe71824a6047
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/text/emoji-web-font.html
|
| @@ -0,0 +1,26 @@
|
| +<html>
|
| +<head>
|
| +<style type="text/css">
|
| +@font-face {
|
| + font-family: FruityGirl;
|
| + src: url(../../third_party/FruityGirl/FruityGirl.ttf) format("truetype");
|
| +}
|
| +
|
| +#emojiLatin {
|
| + font-family: FruityGirl;
|
| + font-size:25px;
|
| +}
|
| +
|
| +#normal {
|
| + font-size:25px;
|
| +}
|
| +</style>
|
| +</head>
|
| +<body>
|
| +<p>Following should show Asterisk with FruitGirl similar to Asterisk Image below</p>
|
| +<p id="emojiLatin">*</p>
|
| +<img src="../../third_party/FruityGirl/002A.png" alt="Asterisk" height="25" width="25">
|
| +<p>Normal rendering of Asterisk with default font</p>
|
| +<p id="normal">*</p>
|
| +</body>
|
| +</html>
|
|
|