Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / overflow / resources / composited-subframe.html
blob92b3b7f4f5ba7359c1d9dba1232c79b52d80bd20
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 body { background-color:silver }
8 .box {
9 height: 200px;
10 width: 200px;
11 margin: 10px;
12 padding: 5px;
13 background-color: blue;
14 transform: translateZ(0);
15 overflow:hidden;
17 .box:hover {
18 transform: none;
20 </style>
21 </head>
22 <body>
24 <div id="iframe-content" class="box">
25 </div>
27 </body>
28 </html>