summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-url.js
blob: 0bfe3989632783b4cf772d1dd1893ec98a68833d (plain)
1
2
3
4
5
6
7
8
9
10
// Script.prototype.url can be a string or null.

var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
var gw = dbg.addDebuggee(g);
for (var fileName of ['file:///var/foo.js', null]) {
    g.evaluate("function f(x) { return 2*x; }", {fileName: fileName});
    var fw = gw.getOwnPropertyDescriptor('f').value;
    assertEq(fw.script.url, fileName);
}