forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnested_frames.html
More file actions
31 lines (30 loc) · 790 Bytes
/
Copy pathnested_frames.html
File metadata and controls
31 lines (30 loc) · 790 Bytes
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
31
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
</head>
<frameset id="frames" cols="*,*">
<frame name="first.withadot" id="embed1.withadot">
<html>
<head>
<title>first frame</title>
</head>
<body>
<div name="right" id="moo" class="dogs">yup</div>
</body>
</html>
</frame>
<frame name="secondName" id="second">
<html>
<head>
<title>second frame</title>
</head>
<body>
<input type="text" id="working">
<input type="button" id="changeFocus" onclick="document.getElementById('working').focus();">
</body>
</html>
</frame>
</frameset>
</html>