Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(447)

Side by Side Diff: ios/testing/data/http_server_files/history_go.html

Issue 2569503002: Created test page to be used for window.history.go() tests. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. -->
6
7 <html>
8 <head>
9 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
10 <title>History navigation</title>
11 <script type="text/javascript" src="history_go.js"></script>
12 </head>
13 <body>
14 <p></p>
15 <div id='onLoadDiv'></div>
Eugene But (OOO till 7-30) 2016/12/09 23:02:16 on-load-div https://engdoc.corp.google.com/eng/do
kkhorimoto 2016/12/13 00:29:10 Done.
16 <br>
17 <div id='noOpDiv'></div>
18 <br>
19 <div id='popStateReceivedDiv'></div>
20 <br>
21 <div id='stateObjectDiv'></div>
22 <br>
23 <div id='hashChangeReceivedDiv'></div>
24 </p>
25
26 <input type="button" value="goNoParameter" id="goNoParameter"
27 onclick="goNoParameter()" /><br>
28 <input type="button" value="goZero" id="goZero"
29 onclick="goZero()" /><br>
30 <input type="button" value="go2" id="go2"
31 onclick="go2()" /><br>
32 <input type="button" value="goBack2" id="goBack2"
33 onclick="goBack2()" /><br>
34
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698