Index: LayoutTests/fast/css/word-spacing-inline-box-line-width-expected.html |
diff --git a/LayoutTests/fast/css/word-spacing-inline-box-line-width-expected.html b/LayoutTests/fast/css/word-spacing-inline-box-line-width-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9936c1e8e3e41a1ca6acbecb9ec45024c313d3d6 |
--- /dev/null |
+++ b/LayoutTests/fast/css/word-spacing-inline-box-line-width-expected.html |
@@ -0,0 +1,23 @@ |
+<!DOCTYPE html> |
+<style> |
+#container { |
+ position: relative; |
+ width: 300px; |
+ height: 300px; |
+ border: solid 1px red; |
+} |
+ |
+#right-align-block { |
+ position: absolute; |
+ right: 0; |
+ word-spacing: 10px; |
+} |
+</style> |
+<div id="container"> |
+ <div id="right-align-block"> |
+ <span>AAAAA</span> |
+ <span style="display:inline-block">BBBBB</span> |
+ <span>CCCCC</span> |
+ </div> |
+</div> |
+This test passes if the texts are aligned right, without overflowing. |