blob: fc6e6f9d84923377c0ba7f9165b523e74ebf716f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<meta http-equiv="x-ua-compatible" content="chrome=1" />
</head>
<body>
<p> Frames </p>
Test of sub frame navigation
<P> <A href="sub_frame1.html" target="x">Frame 1</A> </p>
<P> <A href="sub_frame2.html" target="x">Frame 2</A> </p>
<P> <A href="sub_frame3.html" target="x">Frame 3</A> </p>
<P> <A href="sub_frame4.html" target="x">Frame 4</A> </p>
<br>
<br>
<iframe src ="about:blank" name="x" width="400" height="200">
</iframe>
</body>
</html>
|