Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / word-spacing-nbsp.html
blobd9fc3a8bae217b1b0fbf538573bf053b8a943bb0
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Test word-spacing and nbsp</title>
6 <style type="text/css">
7 div {
8 word-spacing: 20px;
9 float: left;
10 border: solid;
11 clear: both;
12 text-rendering: optimizeLegibility;
14 </style>
15 </head>
16 <body>
17 <p>Neither line below should wrap or expand outside the box</p>
18 <div>Should &nbsp;not wrap</div>
19 <div style="white-space: nowrap;">Should &nbsp;not wrap</div>
20 </body>
21 </html>