Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / margin-applies-to-014-expected.html
blob646ff0eb8a371f12235716de4b07ab7e825f0817
1 <!DOCTYPE html>
2 <html>
3 <style type="text/css">
4 #wrapper
6 border: 10px solid blue;
7 position: absolute;
9 #table
11 border: 10px solid orange;
12 table-layout: fixed;
13 margin: 50px;
15 #row
17 display: table-row;
19 #cell
21 display: table-cell;
22 height: 200px;
23 width: 200px;
25 </style>
26 <p>Test passes if there is space between the blue and orange lines below.</p>
27 <div id="wrapper">
28 <div id="table">
29 <div id="row">
30 <div id="cell"></div>
31 </div>
32 </div>
33 </div>
34 </html>