37 lines
930 B
HTML
37 lines
930 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Author: dbk@google.com (David Barrett-Kahn)
|
|
-->
|
|
<html>
|
|
<!--
|
|
Copyright 2009 The Closure Library Authors. All Rights Reserved.
|
|
|
|
Use of this source code is governed by the Apache License, Version 2.0.
|
|
See the COPYING file for details.
|
|
-->
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>
|
|
CrossPageChannel: End-to-End Test
|
|
</title>
|
|
<script type="text/javascript" src="../../base.js">
|
|
</script>
|
|
<script type="text/javascript">
|
|
goog.require('goog.net.xpc.CrossPageChannelTest');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- Debug box. -->
|
|
<div style="position:absolute; float: right; top: 10px; right: 10px; width: 500px">
|
|
Debug [
|
|
<a href="#" onclick="document.getElementById('debugDiv').innerHTML = '';">
|
|
clear
|
|
</a>
|
|
]:
|
|
<br />
|
|
<div id="debugDiv" style="border: 1px #000000 solid; font-size:xx-small; background: #fff;">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|