Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / word-spacing-between-blocks-expected.html
blobe94afc09472dbf00d7970e38e769a219170acb7b
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>White space processing</title>
6 <meta name="flags" content="ahem">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-props" title="16.4 Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties">
8 <link rel="author" title="Robert Hogan">
9 <style type="text/css">
10 .wordspacing {
11 margin:.2em 0;
12 word-spacing:-.5em;
13 font:18px Ahem,sans-serif;
15 .test {
16 margin:.2em 0;
17 font:18px Ahem,sans-serif;
19 .wordspacing>span,
20 .wordspacing-letters>span {
21 display:inline-block;
23 </style>
24 </head>
26 <body>
28 <p> White space between inline blocks should be affected by the word-spacing property.
29 https://bugs.webkit.org/show_bug.cgi?id=69072 </p>
31 <p>The following strings must be the same:</p>
32 <div class="wordspacing">x x x</div>
33 <div class="wordspacing">x x x</div>
34 <div class="wordspacing">x x x</div>
35 <div class="wordspacing">x x x</div>
36 <div class="wordspacing">x x x</div>
37 <div class="wordspacing">x x x</div>
38 <div class="wordspacing">x x x</div>
39 <div class="wordspacing">x x x</div>
40 <div class="wordspacing">x x x</div>
42 <p>The following strings must be the same:</p>
43 <div class="test">x x x</div>
44 <div class="test">x x x</div>
45 <div class="test">x x x</div>
46 <div class="test">x x x</div>
47 <div class="test">x x x</div>
48 <div class="test">x x x</div>
49 <div class="test">x x x</div>
51 <p>The following strings must be the same:</p>
52 <div class="test">xxx</div>
53 <div class="test">xxx</div>
54 <div class="test">xxx</div>
55 </body>
56 </html>