Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / motion-path / path-establishes-stacking-context-expected.html
blob31f2f32316c0850829985fd5ca68b7f0d314a604
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
6 span {
7 position: absolute;
8 width: 120px;
9 line-height: 120px;
10 text-align: center;
11 color: yellow;
14 #span1 {
15 z-index: 2;
16 left: 50px;
17 top: 50px;
18 background: red;
21 #span2 {
22 z-index: 1;
23 left: 100px;
24 top: 100px;
25 background: green;
28 #span3 {
29 left: 150px;
30 top: 150px;
31 background: blue;
34 #div1 {
35 transform: rotate(0deg);
38 </style>
39 </head>
40 <body>
42 <div id="div1">
43 <span id="span1">First</span>
44 </div>
45 <div id="div2">
46 <span id="span2">Second</span>
47 </div>
48 <div id="div3">
49 <span id="span3">Third</span>
50 </div>
52 </body>
53 </html>