Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / 015.html
blob88ef7ed34430cf1632400364617829abf651d1d3
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html40/strict.dtd">
3 <!-- vim:sw=4:et:ts=4
4 -->
5 <html lang="en-US">
6 <head>
7 <title>z-index testcase: 'auto' doesn't establish new stacking context (position: absolute)</title>
8 <meta http-equiv="Content-Style-Type" content="text/css">
9 <link rel="copyright" href="/~dbaron/legal.html">
10 <style type="text/css">
12 div {
13 height: 100px;
14 width: 100px;
15 margin: 0;
16 border: none;
17 padding: 0;
18 position: absolute;
19 top: 0;
20 left: 0;
23 div#contain {
24 z-index: auto;
27 div#two {
28 background: green;
29 z-index: 2;
32 div#one, div#three {
33 background: red;
34 z-index: 1;
37 </style>
38 </head>
39 <body>
41 <div id="one"></div>
42 <div id="contain">
43 <div id="two"></div>
44 <div id="three"></div>
45 </div>
47 </body>
48 </html>