Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: LayoutTests/fast/css/word-spacing-inline-box-line-width-expected.html

Issue 704693003: Correct line width calculation with inline-block induced word spacing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « LayoutTests/fast/css/word-spacing-inline-box-line-width.html ('k') | Source/core/rendering/RenderBlockLineLayout.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698