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

Unified Diff: third_party/WebKit/LayoutTests/fast/text/break-word-with-floats.html

Issue 2334143002: Fix BreakingContext::rewindToMidWordBreak to set m_currentCharacterIsSpace (Closed)
Patch Set: Fix Created 4 years, 3 months 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text/break-word-with-floats-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/text/break-word-with-floats.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/break-word-with-floats.html b/third_party/WebKit/LayoutTests/fast/text/break-word-with-floats.html
new file mode 100644
index 0000000000000000000000000000000000000000..cd3f6068621432282cfb336a1f70783ea308d2e6
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/text/break-word-with-floats.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<style>
+html {
+ font: 20px/1 Ahem;
+}
+figure {
+ width: 100%;
+ float: left;
+}
+</style>
+<body>
+ <div style="word-wrap: break-word">
+ <figure></figure>
+ <span>12 34</span>
+ </div>
+ <div style="word-break: break-word">
+ <figure></figure>
+ <span>12 34</span>
+ </div>
+ <div style="word-break: break-all">
+ <figure></figure>
+ <span>12 34</span>
+ </div>
+</body>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text/break-word-with-floats-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698