Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / layers / zindex-inherit.html
blob3f63c03319bb433c95127b4e25e2004841cb3b02
1 <html>
2 <head>
3 <style>
4 div { width:100px; height:100px }
5 .green { background-color: green }
6 .red { background-color: red }
7 </style>
8 </head>
9 <body>
11 You should see a green square below.
13 <div class="red" style="position:relative; z-index:0">
14 <div class="red" style="position:absolute; z-index:auto">
15 <div class="red" style="position:absolute; z-index:inherit">
16 <div class="green" style="position:absolute; z-index:1000">
17 </div>
18 </div>
19 </div>
20 <div class="red" style="position:absolute; z-index:100">
21 </div>
22 </div>
23 </body>
24 </html>