Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t1606-c562-white-sp-00-b-ag.html
blob6992442f34b4daf8620f112b84f725ae71f536b6
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: white-space</title>
5 <script src="../resources/ahem.js"></script>
6 <style type="text/css">
7 div { font: 15px/1 Ahem; color: green; background: red url(support/css1test562.png) no-repeat; border: solid black; width: 15em; }
8 div p { margin: 0; }
9 .one {white-space: pre;}
10 .two {white-space: nowrap;}
11 .three {white-space: normal;}
12 </style>
13 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-prop" title="16.6 Whitespace: the 'white-space' property">
14 </head>
15 <body>
16 <p>There should be a single green block below.</p>
17 <div>
18 <p class="one">x x x
19 x x x
20 x x</p>
21 <p class="two">x x x
22 x x x
23 x x</p>
24 <p class="one">x x x
25 x <span class="three">x x
26 x x</span></p>
27 </div>
28 </body>
29 </html>