I\'m developing iPad html5 webpage that needs to display pages from other origins (different domains).
I\'m loading those pages into iframe, and scrolli
iframe
If you have an access to iFrame body, apply some transform3d to its content to enable GPU rendering.
In my case adding -webkit-transform: translate3d(0, 0, 0); to main wrapping div did the job.
-webkit-transform: translate3d(0, 0, 0);