mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 12:53:07 +09:00
6 lines
190 B
JavaScript
6 lines
190 B
JavaScript
const Cu = Components.utils;
|
|
function run_test() {
|
|
var sb = Cu.Sandbox('http://www.example.com');
|
|
var f = Cu.evalInSandbox('var f = function() {}; f;', sb);
|
|
do_check_eq(f.name, "");
|
|
}
|