mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
29
netwerk/cookie/test/unit/test_bug643051.js
Normal file
29
netwerk/cookie/test/unit/test_bug643051.js
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
var Cc = Components.classes;
|
||||
var Ci = Components.interfaces;
|
||||
|
||||
Components.utils.import("resource://gre/modules/NetUtil.jsm");
|
||||
Components.utils.import("resource://gre/modules/Services.jsm");
|
||||
|
||||
function run_test() {
|
||||
// Allow all cookies.
|
||||
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
|
||||
|
||||
let cs = Cc["@mozilla.org/cookieService;1"].getService(Ci.nsICookieService);
|
||||
|
||||
let uri = NetUtil.newURI("http://example.org/");
|
||||
|
||||
let set = "foo=bar\nbaz=foo";
|
||||
let expected = "foo=bar; baz=foo";
|
||||
cs.setCookieStringFromHttp(uri, null, null, set, null, null);
|
||||
|
||||
let actual = cs.getCookieStringFromHttp(uri, null, null);
|
||||
do_check_eq(actual, expected);
|
||||
|
||||
uri = NetUtil.newURI("http://example.com/");
|
||||
cs.setCookieString(uri, null, set, null);
|
||||
|
||||
expected = "foo=bar";
|
||||
actual = cs.getCookieString(uri, null, null);
|
||||
do_check_eq(actual, expected);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue