| <!DOCTYPE html> | |
| <html> | |
| <!-- | |
| Copyright 2015 The Chromium Authors | |
| Use of this source code is governed by a BSD-style license that can be | |
| found in the LICENSE file. | |
| --> | |
| <head> | |
| <meta name="viewport" | |
| content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> | |
| <script> | |
| function openHello() { | |
| window.location = 'hello.html'; | |
| }; | |
| </script> | |
| </head> | |
| <body style='height:10000px;' onclick='openHello();'> | |
| Click page. | |
| </body> | |
| </html> |