1
0
Fork 0
firefox/extensions/permissions/test/unit/head.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
668 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
var { NetUtil } = ChromeUtils.importESModule(
"resource://gre/modules/NetUtil.sys.mjs"
);
// Helper to step a generator function and catch a StopIteration exception.
function do_run_generator(generator) {
try {
generator.next();
} catch (e) {
do_throw("caught exception " + e, Components.stack.caller);
}
}
// Helper to finish a generator function test.
function do_finish_generator_test(generator) {
executeSoon(function () {
generator.return();
do_test_finished();
});
}
function do_count_array(all) {
return all.length;
}