Index: LayoutTests/fast/text/word-spacing-nbsp-expected.html |
diff --git a/LayoutTests/fast/text/word-spacing-nbsp-expected.html b/LayoutTests/fast/text/word-spacing-nbsp-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..86f75099c9dcb163cc3bd51b77aeee8215f4d118 |
--- /dev/null |
+++ b/LayoutTests/fast/text/word-spacing-nbsp-expected.html |
@@ -0,0 +1,25 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <meta charset="utf-8"> |
+ <title>Test word-spacing and nbsp</title> |
+ <style type="text/css"> |
+ div { |
+ word-spacing: 20px; |
+ float: left; |
+ border: solid; |
+ clear: both; |
+ text-rendering: optimizeLegibility; |
+ white-space: nowrap; |
+ position: relative; |
+ overflow: hidden; |
+ } |
+ </style> |
+ </head> |
+ <body> |
+ <p>Neither line below should wrap or expand outside the box</p> |
+ <div>Should not wrap</div> |
+ <div>Should not wrap</div> |
+ </body> |
+</html> |
+ |