Chromium Code Reviews| Index: LayoutTests/fast/css/text-overflow-ellipsis-button.html |
| diff --git a/LayoutTests/fast/css/text-overflow-ellipsis-button.html b/LayoutTests/fast/css/text-overflow-ellipsis-button.html |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..396b972180c106b147049de29b88410ef297a27b |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/text-overflow-ellipsis-button.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<style> |
| + button{ |
| + display:block; |
| + width:30px; |
| + overflow:hidden; |
| + white-space:nowrap; |
| + text-overflow:ellipsis; |
| + } |
| +</style> |
| +</head> |
| +<body> |
| + <button type="button"> Lorem </button> |
| +</body> |
| +</html> |