Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / nested-fixed-iframe-scrolled-expected.html
blob0d266d3061fb92ba1837240765695e6b0f9c25a2
1 <!DOCTYPE html>
2 <script>
3 onload = function() {
4 window.scrollTo(0, 400);
5 };
6 </script>
7 <body style="height: 2000px">
8 Tests paint invalidation of contents of fixed-position iframe in another iframe after main frame is scrolled.
9 Passes if there is a 100x100 green rectangle and no red in the inner-most iframe.
10 <iframe style="position: absolute; top: 500px; left: 0" srcdoc="
11 <iframe style='position: fixed; top: 10px; left: 10px; width: 150px; height: 150px'
12 srcdoc='<div id=&quot;div&quot; style=&quot;width: 100px; height: 100px; background-color: green&quot;></div>'></iframe>">
13 </iframe>
14 </body>