mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
parent
6e997648ba
commit
d3ffa46e36
4 changed files with 11 additions and 10 deletions
9
js/xpconnect/tests/unit/test_xray_regexp.js
Normal file
9
js/xpconnect/tests/unit/test_xray_regexp.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
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");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue