| <html> | |
| <head> | |
| <style type="text/css"> | |
| body { | |
| overflow: hidden; | |
| } | |
| #a { | |
| background-color: green; | |
| width: 100px; | |
| height: 3000px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| This page should be nonscrollable because of overflow: hidden on the body. | |
| <div id="a"></div> | |
| </body> | |
| </html> |