forked from cyns/testfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiframe.html
30 lines (27 loc) · 824 Bytes
/
iframe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<title>I am the title of the containing page</title>
</head>
<body>
<p>
This is some text before an iframe with only src
<iframe src="inner.html"></iframe>
This is some text after an iframe
</p>
<p>
This is some text before an iframe with src and name
<iframe src="inner.html" name="this is the iframe name"></iframe>
This is some text after an iframe
</p>
<p>
This is some text before an iframe with src and title
<iframe src="inner.html" title="this is the iframe title"></iframe>
This is some text after an iframe
</p>
<p>
This is some text before an iframe with src and name and title
<iframe src="inner.html" name="this is the iframe name" title="this is the iframe title"></iframe>
This is some text after an iframe
</p>
</body>
</html>