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"); |
+} |
+ |
+ |
+#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> |