mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-25 00:32:40 +00:00
6 lines
263 B
JavaScript
6 lines
263 B
JavaScript
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");
|
|
}
|