mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Add a simple iframe test page
This commit is contained in:
parent
1662e7a02f
commit
93d7ddd6d7
2 changed files with 12 additions and 0 deletions
7
src/test/html/simple_iframe.html
Normal file
7
src/test/html/simple_iframe.html
Normal 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>
|
5
src/test/html/simple_iframe_inner.html
Normal file
5
src/test/html/simple_iframe_inner.html
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
Just a simple little iframe.
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Add table
Add a link
Reference in a new issue