frameScrollChild.html 482 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Child frame</title>
  5. </head>
  6. <body>
  7. <h1>This is a scrolling frame test</h1>
  8. <div>
  9. <table>
  10. <tr height="50px">
  11. <td>First row</td>
  12. </tr>
  13. <tr height="50px">
  14. <td>Second row</td>
  15. </tr>
  16. <tr height="50px">
  17. <td>Third row</td>
  18. </tr>
  19. <tr height="50px">
  20. <td>Fourth row</td>
  21. </tr>
  22. </table>
  23. </div>
  24. <input type='checkbox' name='scroll_checkbox' />
  25. </body>
  26. </html>