mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
68 lines
1.8 KiB
JavaScript
68 lines
1.8 KiB
JavaScript
SimpleTest.waitForExplicitFinish();
|
|
|
|
var gPopup = null;
|
|
|
|
var gExpectedCookies = 0;
|
|
var gExpectedLoads = 0;
|
|
var gLoads = 0;
|
|
|
|
function setupTest(uri, cookies, loads) {
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
var prefs = Components.classes["@mozilla.org/preferences-service;1"]
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
|
prefs.setIntPref("network.cookie.cookieBehavior", 1);
|
|
|
|
var cs = Components.classes["@mozilla.org/cookiemanager;1"]
|
|
.getService(Components.interfaces.nsICookieManager2);
|
|
cs.removeAll();
|
|
|
|
gExpectedCookies = cookies;
|
|
gExpectedLoads = loads;
|
|
|
|
// load a window which contains an iframe; each will attempt to set
|
|
// cookies from their respective domains.
|
|
gPopup = window.open(uri, 'hai', 'width=100,height=100');
|
|
}
|
|
|
|
/** Receives MessageEvents to this window. */
|
|
function messageReceiver(evt)
|
|
{
|
|
ok(evt instanceof MessageEvent, "wrong event type");
|
|
|
|
if (evt.data == "message")
|
|
gLoads++;
|
|
else {
|
|
ok(false, "wrong message");
|
|
gPopup.close();
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
// only run the test when all our children are done loading & setting cookies
|
|
if (gLoads == gExpectedLoads)
|
|
runTest();
|
|
}
|
|
|
|
function runTest() {
|
|
// set a cookie from a domain of "localhost"
|
|
document.cookie = "oh=hai";
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
var cs = Components.classes["@mozilla.org/cookiemanager;1"]
|
|
.getService(Components.interfaces.nsICookieManager);
|
|
var list = cs.enumerator;
|
|
var count = 0;
|
|
while (list.hasMoreElements()) {
|
|
count++;
|
|
list.getNext();
|
|
}
|
|
is(count, gExpectedCookies, "incorrect number of cookies");
|
|
|
|
gPopup.close();
|
|
cs.removeAll();
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
window.addEventListener("message", messageReceiver, false);
|
|
|