37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
Copyright 2007 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>
|
|
Closure Unit Tests - Iframe/XHR Execution Context
|
|
</title>
|
|
<script src="../base.js">
|
|
</script>
|
|
<script>
|
|
goog.require('goog.net.iframeXhrTest');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
XmlHttpRequests that initiate from code executed in an iframe, that is then
|
|
destroyed, result in an error in FireFox. This test case is used to verify
|
|
that Closure's IframeIo and XhrLite do not suffer from this problem. See
|
|
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=369939">
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=369939
|
|
</a>
|
|
.
|
|
</p>
|
|
<p>
|
|
NOTE(pupius): 14/11/2011 The XhrMonitor code has been removed since the
|
|
above bug doesn't manifest in any currently supported versions. This test
|
|
is left in place as a way of verifying the problem doesn't resurface.
|
|
</p>
|
|
</body>
|
|
</html>
|