Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / whitespace / 009.html
blob732055f7ebc1b50a3f76c7255d51b5704fb87cf6
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2 <html>
3 <head>
4 <title>white-space nowrap: basic test</title>
5 <script src="../../../resources/ahem.js"></script>
6 <style type="text/css">
7 .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; color: white; }
8 .top { font: 20px/1 Ahem; }
9 .outer { width: 10em; background: red; }
10 .inner { width: 7em; color: lime; background: green; white-space: nowrap; }
11 </style>
12 </head>
13 <body>
14 <div class="control">Ahem_font_required_for_this_test.</div>
15 <p>There should be no red below, only a lime line with a green square in it.</p>
16 <div class="top">
17 <div class="outer">
18 <div class="inner">
19 xxx xxxxxx
20 </div>
21 </div>
22 </div>
23 </body>
24 </html>