diff options
Diffstat (limited to 'layout/reftests/text/negative-letter-spacing-1.html')
-rw-r--r-- | layout/reftests/text/negative-letter-spacing-1.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/text/negative-letter-spacing-1.html b/layout/reftests/text/negative-letter-spacing-1.html new file mode 100644 index 0000000000..69c1f6fa4b --- /dev/null +++ b/layout/reftests/text/negative-letter-spacing-1.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<meta charset=utf-8> +<head> + <style> + div { + /* This letter-spacing value only impacts a single space character. */ + letter-spacing: -60px; + float: left; + border: 1px solid black; + } + span { + letter-spacing: 0; + } + </style> +</head> +<body> + <div><span>same</span> <span>line?</span></div> |