this works for me (even on safari too):
<iframe src="http://url/file.html" frameborder="0" style="overflow-y:scroll !important; overflow-x:hidden !important; overflow:hidden;height:100%;width:100%;" scrolling="yes"></iframe>
Or you can do it too:
CSS
iframe { overflow-y:scroll !important; overflow-x:hidden !important; overflow:hidden; height:100%; width:100%; border:none; }
HTML
<iframe src="http://url/file.html" scrolling="yes"></iframe>
* src ( http: //url/file.html ), you must specify a valid URL and HTML file.
source share