tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / last-child-style-sharing.html
1 <html>
2     <head>
3         <style type="text/css">
4             div {
5                 background-color: red;
6                 width: 100px;
7                 height: 100px;
8             }
9
10             div:last-child {
11                 position: relative;
12                 top: -100px;
13                 background-color: green;
14             }
15         </style>
16     </head>
17     <body>
18         <div></div>
19         <div></div>
20     </body>
21 </html>