No bug. Add a wrapper test. rs=sicking

This commit is contained in:
Blake Kaplan 2010-01-18 16:54:29 -08:00
parent 37cf851b0f
commit ede942a3b2
2 changed files with 41 additions and 0 deletions

View File

@ -69,6 +69,7 @@ _TEST_FILES = bug500931_helper.html \
test_bug505915.html \
test_bug517163.html \
test_cows.html \
test_frameWrapping.html \
$(NULL)
libs:: $(_TEST_FILES)

View File

@ -0,0 +1,40 @@
<!DOCTYPE HTML>
<html>
<!--
No bug.
-->
<head>
<title>Test for Bug </title>
<script type="application/javascript" src="/MochiKit/packed.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=">Mozilla Bug </a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** No bug for this test **/
function go() {
var win = frames[0];
(function() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var utils = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindowUtils);
is(utils.getClassName(win), "XPCCrossOriginWrapper", "correctly wrap frame elements");
})()
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
</script>
</pre>
<iframe id="ifr" src="inner.html" onload="go()"></iframe>
</body>
</html>