mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
10 lines
281 B
JavaScript
10 lines
281 B
JavaScript
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
|
|
function run_test()
|
|
{
|
|
var p = Cc["@mozilla.org/hash-property-bag;1"].
|
|
createInstance(Ci.nsIWritablePropertyBag2);
|
|
p.setPropertyAsInt64("a", -4000);
|
|
do_check_neq(p.getPropertyAsUint64("a"), -4000);
|
|
}
|