history_blank.html 716 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2010 The Closure Library Authors. All Rights Reserved.
  5. Use of this source code is governed by the Apache License, Version 2.0.
  6. See the COPYING file for details.
  7. -->
  8. <title>Intentionally left blank</title>
  9. <script type="text/javascript">
  10. // Display the current iframe location for debugging purposes.
  11. function displayLocation() {
  12. document.body.innerHTML = '';
  13. document.body.appendChild(document.createTextNode(location.hash || 'null'));
  14. }
  15. if (window != window.top) {
  16. setInterval(displayLocation, 10);
  17. }
  18. </script>
  19. <body>
  20. This is a blank helper page for the goog.History demos. See
  21. <a href="history1.html">demo 1</a> and
  22. <a href="history2.html">demo 2</a>.
  23. </body>
  24. </html>