transform-iframe-scroll-position-contents.html (791B)
1 <!DOCTYPE html> 2 3 <html> 4 <head> 5 <title>CSS Test (Transforms): iframe scroll position</title> 6 <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com"> 7 <style> 8 html { background: red; } 9 </style> 10 </head> 11 12 <body> 13 <!-- Make a large red page with a small green and blue square that is scrolled to immediately. --> 14 <div style="position: absolute; width: 50px; height: 25px; top: 3000px; left: 3000px; background: green;"></div> 15 <div style="position: absolute; width: 50px; height: 25px; top: 3025px; left: 3000px; background: blue;"></div> 16 <div style="width: 10000px; height: 10000px;"></div> 17 <script> 18 window.scrollTo(3000, 3000); 19 </script> 20 </body> 21 </html>