mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +09:00
9 lines
346 B
JavaScript
9 lines
346 B
JavaScript
const Cu = Components.utils;
|
|
|
|
function run_test() {
|
|
var sandbox = Cu.Sandbox('http://www.example.com');
|
|
var regexp = Cu.evalInSandbox("/test/i", sandbox);
|
|
equal(RegExp.prototype.toString.call(regexp), "/test/i");
|
|
var prototype = Cu.evalInSandbox("RegExp.prototype", sandbox);
|
|
equal(typeof prototype.lastIndex, "undefined");
|
|
}
|