<iframe src="ms-appx-web:///web.html" width="300" height="400">
<!-- running in web context -->
</iframe>
<iframe src="http://web.html" width="300" height="400">
<!-- running in web context -->
</iframe>
<iframe src="/web.html" width="300" height="400">
<!-- running in local context -->
</iframe>
<iframe src="ms-appx:///web.html" width="300" height="400">
<!-- running in local context -->
</iframe>
<!-- iframe in local context with source in the app package -->
<!-- this form is only allowed from inside the local context -->
<iframe src=" /frame-local.html"></iframe>
<iframe src="ms-appx:///frame-local.html"></iframe>
<!-- iframe in web context with source in the app package -->
<iframe src="ms-appx-web:///frame-web.html"></iframe>
<!-- iframe with an external source automatically assigns web context -->
<iframe src="http://www.bing.com"></iframe>