Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / test_xray_regexp.js
blob72eb9563d089e0db0e900f44a12ea98e0aafbfdf
1 function run_test() {
2     var sandbox = Cu.Sandbox('http://www.example.com');
3     var regexp = Cu.evalInSandbox("/test/i", sandbox);
4     equal(RegExp.prototype.toString.call(regexp), "/test/i");
5     var prototype = Cu.evalInSandbox("RegExp.prototype", sandbox);
6     equal(typeof prototype.lastIndex, "undefined");