зеркало из https://github.com/mozilla/pjs.git
Test for bug 616441. a=b
This commit is contained in:
Родитель
8f6e8ae439
Коммит
9a8616c74f
|
@ -18,8 +18,21 @@ function run_test() {
|
|||
pb.setIntPref("Test.IPC.int.new", 23);
|
||||
pb.setCharPref("Test.IPC.char.new", "hey");
|
||||
|
||||
run_test_in_child("test_observed_prefs.js");
|
||||
}
|
||||
else {
|
||||
run_test_in_child("test_observed_prefs.js", testPrefClear);
|
||||
}
|
||||
}
|
||||
|
||||
function testPrefClear() {
|
||||
var pb = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch);
|
||||
pb.clearUserPref("Test.IPC.bool.new");
|
||||
|
||||
sendCommand(
|
||||
'var pb = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch);\n'+
|
||||
'pb.prefHasUserValue("Test.IPC.bool.new");\n',
|
||||
checkWasCleared);
|
||||
}
|
||||
|
||||
function checkWasCleared(existsStr) {
|
||||
do_check_eq(existsStr, "false");
|
||||
do_test_finished();
|
||||
}
|
Загрузка…
Ссылка в новой задаче