aboutsummaryrefslogtreecommitdiff
path: root/node_modules/selenium-webdriver/lib/test/data/frameScrollChild.html
blob: 3eb3bf47d553fa10da69fe0d7c8caa4cdd17e881 (plain)
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
<!DOCTYPE html>
<html>
<head>
  <title>Child frame</title>
</head>
<body>
  <h1>This is a scrolling frame test</h1>
  <div>
    <table>
      <tr height="50px">
        <td>First row</td>
      </tr>
      <tr height="50px">
        <td>Second row</td>
      </tr>
      <tr height="50px">
        <td>Third row</td>
      </tr>
      <tr height="50px">
        <td>Fourth row</td>
      </tr>
    </table>
  </div>
  <input type='checkbox' name='scroll_checkbox' />
</body>
</html>