Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / frames / nested-iframe-blit-on-scroll.html
blob6d4d30ef9c9322afb744d33d7a21b6cc09f42afa
1 <html>
2 <head>
3 <style type="text/css">
4 iframe {
5 position: relative;
6 z-index: 1;
7 left: 10px;
8 top: 10px;
9 border: 1px solid black;
12 #overlap {
13 position: absolute;
14 width: 100px;
15 height: 100px;
16 z-index: 2;
17 left: 10px;
18 top: 100px;
19 background-color: blue;
21 p {
22 margin-top: 50px;
24 </style>
25 </head>
26 <body>
27 <div id="overlap"></div>
28 <iframe id="frame" src="resources/blit-on-scroll-subframe.html" scrolling="no"></iframe>
29 <p>The blue box should not get "smeared" when you scroll the inner iframe.</p>
30 </body>
31 </html>