frameScrollChild.html 482 Bytes
Newer Older
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>