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