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

Side by Side Diff: LayoutTests/fast/text/international/unicode-bidi-isolate-collapsed-whitespace.html

Issue 26315003: Bidi-Isolate inlines break layout with collapsed whitespace (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased patch Created 7 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <style>
4 body > div {
5 display: inline-block;
6 border: 1px solid black;
7 width: 200px;
8 }
9 </style>
10 <body>
11 <p>This is a test for line layout to properly handle collapsing whitespace inter spersed with inline isolated content.</p>
12 <div id="test">
13 <p>123
14 <span style="unicode-bidi: -webkit-isolate">456</span> 789</p>
15 <p>123 <span style="unicode-bidi: -webkit-isolate">456</span> 789</p>
16 <p>123
17 <span style="unicode-bidi: -webkit-isolate">4 56
18 </span> 789</p>
19 <p>123
20 <span style="unicode-bidi: -webkit-isolate">
21 456
22 </span>
23 789</p>
24 <p>1 2 3
25 <span style="unicode-bidi: -webkit-isolate">
26 4 5 6
27 </span>
28 7 8 9 </p>
29 </p>
30 <p>123
31 <span style="unicode-bidi: -webkit-isolate"></span> 789</p>
32 <p>123
33 <span style="unicode-bidi: -webkit-isolate"> </span> 789</p>
34 <p>123
35 <span style="unicode-bidi: -webkit-isolate"> 4 56 </span>
36 789 <span style="unicode-bidi: -webkit-isolate"> 10 11 12 </span> 13 1 4 15 </p>
37 <p>123
38 <span style="unicode-bidi: -webkit-isolate"> 4 <span style="unicode-bidi: -web kit-isolate"> 5 6 7 </span> 89 </span>
39 10 11 12 <span style="unicode-bidi: -webkit-isolate"> 13 14 15 </p>
40
41 </div>
42 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698