Index: LayoutTests/fast/css/text-overflow-ellipsis-multiple-shadows.html |
diff --git a/LayoutTests/fast/css/text-overflow-ellipsis-multiple-shadows.html b/LayoutTests/fast/css/text-overflow-ellipsis-multiple-shadows.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..764b755f24cef05fa1096df96fd47f78ddcbd2f8 |
--- /dev/null |
+++ b/LayoutTests/fast/css/text-overflow-ellipsis-multiple-shadows.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <style> |
+ .testDiv { |
+ position: absolute; |
+ left: 0; |
+ top: 0; |
+ overflow: hidden; |
+ text-overflow: ellipsis; |
+ font-size: 72px; |
+ width: 2em; |
+ text-shadow: 0px 8px green, 0px 16px blue; |
+ } |
+ </style> |
+ </head> |
+ <body> |
+ <div class="testDiv">Blink</div> |
+ </body> |
+</html> |