| <!DOCTYPE html> | |
| <html style=overflow:scroll> | |
| <head> | |
| <script> | |
| function scroll() { | |
| document.body.scrollLeft = 200; | |
| document.body.scrollTop = 200; | |
| document.documentElement.scrollLeft = 100; | |
| parent.verifyTest() | |
| } | |
| </script> | |
| </head> | |
| <body style=overflow:scroll;width:100px;height:100px onload="scroll()"> | |
| <div style=position:absolute;width:5000px;border:dotted></div> | |
| </body> |