Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / whitespace / no-wrap-child-in-auto-wrap-container-expected.html
blob9ea73cb6885a8dbc6668e63f0cbf3878d3e29f4e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 #container {
6 width: 200px;
8 #float {
9 float: left;
10 height:50px;
11 width: 50px;
12 background-color:red;
14 #nowrap {
15 white-space: nowrap;
17 </style>
18 </head>
19 <body>
20 A no-wrap child that does not fit on an autowrap line should shift down even when there
21 is no whitespace after the no-wrap child.
22 <div id="container">
23 <div id="float"></div>
24 <span id="nowrap">This text should be under the red square.</span>
25 </div>
26 <br>
27 <div id="container nowrap">
28 <div id="float"></div>
29 <span id="nowrap">This text should be to the right of the red square.</span>
30 </div>
31 </body>
32 </html>