Bug 725045. (Av1) pushPrefEnv() param is "clear" not "remove". r=jmaher.

DONTBUILD (comment-only).
This commit is contained in:
Serge Gautherie 2012-02-07 22:05:18 +01:00
parent fc417d773a
commit e616109281

View File

@ -466,7 +466,7 @@ SpecialPowersAPI.prototype = {
* what we have set.
*
* prefs: {set|clear: [[pref, value], [pref, value, Iid], ...], set|clear: [[pref, value], ...], ...}
* ex: {'set': [['foo.bar', 2], ['browser.magic', '0xfeedface']], 'remove': [['bad.pref']] }
* ex: {'set': [['foo.bar', 2], ['browser.magic', '0xfeedface']], 'clear': [['bad.pref']] }
*
* In the scenario where our prefs specify the same pref more than once, we do not guarantee
* the behavior.
@ -1081,4 +1081,3 @@ SpecialPowersAPI.prototype = {
return el.dispatchEvent(event);
},
};