Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 State Operations</title> | |
| 11 <script type="text/javascript" src="state_operations.js"></script> | |
| 12 </head> | |
| 13 <body> | |
| 14 <p></p> | |
|
Eugene But (OOO till 7-30)
2017/01/20 21:55:04
Add indentation?
kkhorimoto
2017/01/21 01:38:24
Done.
| |
| 15 <div id='on-load'></div> | |
| 16 <br> | |
| 17 <div id='no-op'></div> | |
| 18 <br> | |
| 19 </p> | |
| 20 | |
| 21 <input type="button" value="push-state" id="push-state" | |
| 22 onclick="pushStateAction()" /><br> | |
| 23 <input type="button" value="replace-state" id="replace-state" | |
| 24 onclick="replaceStateAction()" /><br> | |
| 25 | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |