2007-11-26 21:32:23 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=369814
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 369814</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2007-11-26 21:32:23 -08:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.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=384014">Mozilla Bug 369814</a>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
|
|
|
<iframe id="testFrame"></iframe>
|
|
|
|
|
|
|
|
<pre id="test">
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
|
|
|
|
/** Tests for Bug 369814 **/
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
// Because child scripts won't be able to run to tell us they're done,
|
|
|
|
// we need to just wait for them. Wait this amount of time before checking
|
|
|
|
// the results.
|
|
|
|
const gLoadTimeout = 3000;
|
|
|
|
|
|
|
|
var Ci = Components.interfaces;
|
|
|
|
|
|
|
|
var gCurrentTest;
|
|
|
|
var gTargetWindow;
|
|
|
|
var gNumPokes;
|
|
|
|
var gPrefValue;
|
|
|
|
|
|
|
|
var gTestFrame = document.getElementById('testFrame');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by documents loaded from jar files to indicate that they can access
|
|
|
|
* this document.
|
|
|
|
*/
|
|
|
|
function poke(description) {
|
|
|
|
ok(false, gCurrentTest['name'] + ": got unexpected poke: " + description);
|
|
|
|
gNumPokes++;
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadEvent(window, callback)
|
|
|
|
{
|
|
|
|
var fn = function() {
|
|
|
|
window.removeEventListener("load", fn, false);
|
|
|
|
callback();
|
|
|
|
};
|
|
|
|
window.addEventListener("load", fn, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadTestTarget(callback)
|
|
|
|
{
|
2010-03-12 13:53:36 -08:00
|
|
|
gTargetWindow = window.open("http://mochi.test:8888", "bug369814target");
|
2007-11-26 21:32:23 -08:00
|
|
|
loadEvent(gTargetWindow, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
function closeTestTarget()
|
|
|
|
{
|
|
|
|
gTargetWindow.close();
|
|
|
|
gTargetWindow = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadErrorTest(test)
|
|
|
|
{
|
|
|
|
gTestFrame.src = test['url'];
|
|
|
|
|
|
|
|
// Give the frame a chance to fail at loading
|
|
|
|
setTimeout(function() {
|
|
|
|
// XXX: There doesn't seem to be a reliable check for "got an error,"
|
|
|
|
// but reaching in to an error document will throw an exception
|
|
|
|
var errorPage;
|
|
|
|
try {
|
|
|
|
var item = gTestFrame.contentDocument.getElementById(gCurrentTest['data-iframe']);
|
|
|
|
errorPage = false;
|
|
|
|
} catch (e) {
|
|
|
|
errorPage = true;
|
|
|
|
}
|
|
|
|
ok(errorPage, gCurrentTest["name"] + ": should block a suspicious JAR load.");
|
|
|
|
|
|
|
|
finishTest();
|
|
|
|
}, gLoadTimeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
function iframeTest(test) {
|
|
|
|
gTestFrame.src = test['url'];
|
|
|
|
loadEvent(gTestFrame, function() {
|
|
|
|
finishTest();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function refreshTest(test) {
|
|
|
|
gTestFrame.src = test['url'];
|
|
|
|
loadEvent(gTestFrame, function() {
|
|
|
|
// Wait for the frame to try and refresh
|
|
|
|
// XXX: a "blocked redirect" signal would be needed to get rid of
|
|
|
|
// this timeout.
|
|
|
|
setTimeout(function() {
|
|
|
|
finishTest();
|
|
|
|
}, gLoadTimeout);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function anchorTest(test) {
|
|
|
|
loadTestTarget(function() {
|
|
|
|
gTestFrame.src = test['url'];
|
|
|
|
loadEvent(gTestFrame, function() {
|
|
|
|
sendMouseEvent({type:'click'}, 'target', gTestFrame.contentWindow);
|
|
|
|
sendMouseEvent({type:'click'}, 'notarget', gTestFrame.contentWindow);
|
|
|
|
|
|
|
|
// Give the clicks a chance to load
|
|
|
|
setTimeout(function() {
|
|
|
|
closeTestTarget();
|
|
|
|
finishTest();
|
|
|
|
}, gLoadTimeout);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var gTests = [
|
|
|
|
{ "name" : "iframes.html loaded from non-jar type, pref disabled",
|
2010-03-12 13:53:36 -08:00
|
|
|
"url" : "jar:http://mochi.test:8888/tests/docshell/test/bug369814.zip!/iframes.html",
|
2007-11-26 21:32:23 -08:00
|
|
|
"pref" : false,
|
|
|
|
"pokes" : { },
|
|
|
|
"func" : loadErrorTest,
|
|
|
|
},
|
|
|
|
{ "name" : "refresh.html loaded from non-jar type, pref enabled",
|
2010-03-12 13:53:36 -08:00
|
|
|
"url" : "jar:http://mochi.test:8888/tests/docshell/test/bug369814.zip!/refresh.html",
|
2007-11-26 21:32:23 -08:00
|
|
|
"pref" : true,
|
|
|
|
"pokes" : { },
|
|
|
|
"func" : refreshTest,
|
|
|
|
},
|
|
|
|
{ "name" : "iframes.html loaded from non-jar type, pref enabled",
|
2010-03-12 13:53:36 -08:00
|
|
|
"url" : "jar:http://mochi.test:8888/tests/docshell/test/bug369814.zip!/iframes.html",
|
2007-11-26 21:32:23 -08:00
|
|
|
"pref" : true,
|
|
|
|
"pokes" : { },
|
|
|
|
"func" : iframeTest,
|
|
|
|
},
|
|
|
|
{ "name" : "anchors.html loaded from non-jar type, pref enabled",
|
2010-03-12 13:53:36 -08:00
|
|
|
"url" : "jar:http://mochi.test:8888/tests/docshell/test/bug369814.zip!/anchors.html",
|
2007-11-26 21:32:23 -08:00
|
|
|
"pref" : true,
|
|
|
|
"pokes" : { },
|
|
|
|
"func" : anchorTest,
|
|
|
|
},
|
2009-03-10 14:58:00 -07:00
|
|
|
{ "name" : "iframes.html loaded from view-source jar type, pref disabled",
|
2010-03-12 13:53:36 -08:00
|
|
|
"url" : "jar:view-source:http://mochi.test:8888/tests/docshell/test/bug369814.jar!/iframes.html",
|
2010-01-06 17:14:38 -08:00
|
|
|
"pref" : false,
|
2009-03-10 14:58:00 -07:00
|
|
|
"pokes" : { },
|
|
|
|
"func" : loadErrorTest
|
|
|
|
},
|
|
|
|
{ "name" : "iframes.html loaded from view-source jar type, pref enabled",
|
2010-03-12 13:53:36 -08:00
|
|
|
"url" : "jar:view-source:http://mochi.test:8888/tests/docshell/test/bug369814.jar!/iframes.html",
|
2009-03-10 14:58:00 -07:00
|
|
|
"pref" : true,
|
|
|
|
"pokes" : { },
|
|
|
|
"func" : loadErrorTest
|
|
|
|
},
|
2007-11-26 21:32:23 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
var gNextTest = 0;
|
|
|
|
|
|
|
|
function runNextTest()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
var prefs = Components.classes["@mozilla.org/preferences-service;1"].
|
|
|
|
getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
|
|
|
|
if (gNextTest < gTests.length) {
|
|
|
|
gCurrentTest = gTests[gNextTest++];
|
|
|
|
gNumPokes = 0;
|
|
|
|
|
|
|
|
prefs.setBoolPref("network.jar.open-unsafe-types", gCurrentTest['pref']);
|
|
|
|
|
|
|
|
gCurrentTest['func'](gCurrentTest);
|
|
|
|
} else {
|
|
|
|
// Put back the pref value we had at test start
|
|
|
|
prefs.setBoolPref("network.jar.open-unsafe-types", gPrefValue);
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function finishTest()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
var prefs = Components.classes["@mozilla.org/preferences-service;1"].
|
|
|
|
getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
prefs.setBoolPref("network.jar.open-unsafe-types", false);
|
|
|
|
|
|
|
|
if (gNumPokes == 0) {
|
|
|
|
ok(true, gCurrentTest["name"] + ": no unexpected pokes");
|
|
|
|
}
|
|
|
|
|
|
|
|
runNextTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
function startTests()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
var prefs = Components.classes["@mozilla.org/preferences-service;1"].
|
|
|
|
getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
gPrefValue = prefs.getBoolPref("network.jar.open-unsafe-types");
|
|
|
|
}
|
|
|
|
|
|
|
|
addLoadEvent(runNextTest);
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|