crosspagechannel_test.html 957 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <!--
  3. Author: dbk@google.com (David Barrett-Kahn)
  4. -->
  5. <html>
  6. <!--
  7. Copyright 2009 The Closure Library Authors. All Rights Reserved.
  8. Use of this source code is governed by the Apache License, Version 2.0.
  9. See the COPYING file for details.
  10. -->
  11. <head>
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  13. <meta charset="UTF-8" />
  14. <title>
  15. CrossPageChannel: End-to-End Test
  16. </title>
  17. <script type="text/javascript" src="../../base.js">
  18. </script>
  19. <script type="text/javascript">
  20. goog.require('goog.net.xpc.CrossPageChannelTest');
  21. </script>
  22. </head>
  23. <body>
  24. <!-- Debug box. -->
  25. <div style="position:absolute; float: right; top: 10px; right: 10px; width: 500px">
  26. Debug [
  27. <a href="#" onclick="document.getElementById('debugDiv').innerHTML = '';">
  28. clear
  29. </a>
  30. ]:
  31. <br />
  32. <div id="debugDiv" style="border: 1px #000000 solid; font-size:xx-small; background: #fff;">
  33. </div>
  34. </div>
  35. </body>
  36. </html>