Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / framesets / resources / composited-subframe.html
blob3e3dd224f23458fafeed848fcd7caad1658ea9bc
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 body {
7 overflow:hidden;
10 .box {
11 position:absolute;
12 height: 200px;
13 width: 200px;
14 margin: 10px;
15 padding: 5px;
16 background-color: green;
17 transform: translateZ(0);
18 overflow:hidden;
20 .box:hover {
21 transform: none;
23 .testbox {
24 position:absolute;
25 height: 200px;
26 width: 200px;
27 margin: 10px;
28 margin-left: 10px;
29 background-color: red;
31 </style>
32 </head>
33 <body>
34 <div class="testbox"></div>
35 <div id="frame-content" class="box"></div>
37 </body>
38 </html>