<!--
seamless="seamless" - Specifies that the <iframe> should look like it is a part of the containing document
allowTransparency="true" - old "seamless" alternative (is not a W3C spec/ option)
frameborder="0" - no border on old browsers (deprecated on HTML5)
scrolling="auto" - Specifies whether or not to display scrollbars in an <iframe> (deprecated on HTML5)
horizontalscrolling - force hide horizontal scrolling on (IE fix)
verticalscrolling - force hide vertical scrolling on (IE fix)
AUTO RESIZE IFRAME
https://github.com/davidjbradshaw/iframe-resizer
-->
<iframe
seamless="seamless"
allowtransparency="true"
frameborder="0"
border="0"
scrolling="auto"
horizontalscrolling="no"
verticalscrolling="yes"
style="position: relative; overflow-x: auto; overflow-y: auto;"
src="about:blank"
></iframe>