Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / overflow-applies-to-003-expected.html
bloba3291ff74146ad9f5ca05cb4e72c3eee0f29cf21
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Reference Result</title>
5 <meta name="flags" content="ahem">
6 <script src="../../resources/ahem.js"></script>
7 <style type="text/css">
8 #table
10 border: 5px solid transparent;
11 color: white;
12 display: table;
13 font: 20px/1em Ahem;
14 height: 5em;
15 table-layout: fixed;
16 width: 5em;
18 #row
20 display: table-row;
22 #cell
24 display: table-cell;
25 white-space: nowrap;
27 #span2
29 color: green;
31 </style>
32 </head>
33 <body>
34 <p>Test passes if there is a green box below.</p>
35 <div id="table">
36 <div id="row">
37 <div id="cell"><span>XXXXX</span><span id="span2">XXXXX</span></div>
38 </div>
39 </div>
40 </body>
41 </html>