tenfourfox/js/xpconnect/tests/unit/test_bug1170311.js

6 lines
263 B
JavaScript
Raw Normal View History

2017-04-19 07:56:45 +00:00
const Cu = Components.utils;
function run_test() {
do_check_throws_nsIException(() => Cu.getObjectPrincipal({}).equals(null), "NS_ERROR_ILLEGAL_VALUE");
do_check_throws_nsIException(() => Cu.getObjectPrincipal({}).subsumes(null), "NS_ERROR_ILLEGAL_VALUE");
}