Table of contents
No headersThe code below only produced a blank iframe for me. I think the iframe might be affected by the same origin policy.
The code works as intended for me when the iframe source is loaded within the same domain. I tested the code on FireFox 9.0.1
on Ubuntu 10.04
<html>
<head>
<title>
Fun rotation test
</title>
</head>
<body>
<div style="-moz-transform: rotate(90deg); -moz-transform-origin: bottom left;">
<iframe src="http://developer.mozilla.org/" width="500px" height="600px" />
</div>
</body>
</html>