transform-iframe-scroll-position-ref.html (702B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): iframe scroll position</title> 5 <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com"> 6 <style> 7 #iframe { 8 border: 0; 9 width: 50px; 10 height: 50px; 11 border: solid; 12 } 13 14 #iframe div { 15 width: 25px; 16 height: 50px; 17 float: left; 18 } 19 20 .rotate { 21 transform: rotate(90deg); 22 } 23 </style> 24 <body onload="onLoad();"> 25 <div id="iframe"> 26 <div style="background: blue;"></div> 27 <div style="background: green;"></div> 28 </div> 29 </body> 30 </html>