Subj : xpcshell js object getters aren't working as of 1.4 To : netscape.public.mozilla.jseng From : Pete Collins Date : Tue Jun 10 2003 05:41 pm js> function foo () {} js> foo.prototype = { bar:'hey', get path () { print('testing'); } } [object Object] js> var f = new foo(); js> f.path; js> f.bar; hey js> Anyone know what changed recently? Thanks --pete .