Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / word-space-between-inlines-expected.html
blob73a3f8ce496cb9a0963f6b457153be92eb299847
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div {
6 word-spacing: 1px;
8 .float {
9 float: left;
11 .inline-block {
12 display: inline-block;
14 </style>
15 </head>
16 <body>
17 <p>This test ensures that preferred width and layout match for blocks with word-spacing between inlines.
18 All the text below should be on one line.</p>
19 <div class="float" style="background-color: red">a b</div>
20 <div class="float" style="background-color: orange">c d</div>
21 <div class="float" style="background-color: yellow">e f</div>
22 <div class="float" style="background-color: green">g h</div>
23 <div class="inline-block" style="background-color: blue">i j
24 </div><div class="inline-block" style="background-color: indigo">k l
25 </div><div class="inline-block" style="background-color: purple">m n
26 </div><div class="inline-block" style="background-color: violet">o p
27 </div>
28 </body>