Chromium Code Reviews| Index: LayoutTests/fast/text/ellipsis-platform-font-change.html |
| diff --git a/LayoutTests/fast/text/ellipsis-platform-font-change.html b/LayoutTests/fast/text/ellipsis-platform-font-change.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6314ec165838dcfc1bea11c0958684ca7d4277a5 |
| --- /dev/null |
| +++ b/LayoutTests/fast/text/ellipsis-platform-font-change.html |
| @@ -0,0 +1,28 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<style> |
| +@font-face { |
| + font-family: AndroidEmoji; |
| + src: url(../../third_party/AndroidEmojiMonospace/AndroidEmoji.ttf.subset-uni203C.ttf) format("truetype"); |
|
Dominik Röttsches
2014/12/15 09:37:41
See comment on README.Chromium file. Could you exp
h.joshi
2014/12/24 06:30:59
Pls refer to comment in README.Chromium
|
| +} |
| + |
| + |
| +#div { |
| + font-family: AndroidEmoji; |
| + white-space: nowrap; |
| + text-overflow: ellipsis; |
| + width: 2em; |
| + overflow: hidden; |
| + border: 1px solid #000000; |
| + font-size:20px; |
| +} |
| + |
| +</style> |
| +</head> |
| +<body> |
| + |
| +<div id="div">A,,,B</div> |
| + |
| +</body> |
| +</html> |