transform-iframe-001.html (900B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Iframe</title> 5 <link rel="author" title="Clint Talbert" href="mailto:ctalbert@mozilla.com"> 6 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 7 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-rendering"> 8 <meta name="assert" content='This test ensures that transforms cannot move 9 the contents of an iframe onto the parent page. The iframe here contains a 10 red box shifted 500px down and to the right, outside the iframe's 11 visible area. overflow: hidden ensures that scrollbars are not tested.'> 12 <link rel="match" href="transform-iframe-ref.html"> 13 <style> 14 iframe { 15 overflow: hidden; 16 height: 200px; 17 width: 300px; 18 } 19 </style> 20 <iframe src="support/transform-iframe-001-contents.html"></iframe> 21 </body> 22 </html>