Add a simple iframe test page

This commit is contained in:
Keegan McAllister 2014-02-11 12:03:46 -08:00
parent 1662e7a02f
commit 93d7ddd6d7
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<html>
<body>
<iframe src="simple_iframe_inner.html"
style="display:block; border: 1px; width: 400px; height: 400px">
</iframe>
</body>
</html>

View file

@ -0,0 +1,5 @@
<html>
<body>
Just a simple little iframe.
</body>
</html>