Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / chrome / test / data / navigation_interception / navigation_from_timer.html
blob70da81e6d4254ed047091c15ab38d7e8fc2c11da
1 <!DOCTYPE html>
2 <html>
3 <!--
5 Copyright (c) 2015 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file.
9 -->
10 <head>
11 <script>
12 function openHello() {
13 window.location = 'hello.html';
16 setTimeout(openHello, 2000)
17 </script>
18 </head>
19 <body>
20 Welcome to Hello.
21 </body>
22 </html>