blob: 1eaa3cfec877ff363b53d172cc211e6ce4a863ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head><title>src property test - page 1</title>
<script type="text/javascript">
function redirect(){
window.location = "src_property_frame2.html";
}
</script>
</head>
<body onLoad="setTimeout(redirect, 100);">
<h2>Prepare to be redirected!</h2>
<p>Redirecting to a new page within frame...</p>
</body>
</html>
|