summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_8_5/regress/regress-607863.js
blob: 75d9ae09f190a5d29b6899ab515ade2230a7b3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// |reftest| fails-if(!xulRuntime.shell)
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

var sandbox = evalcx('');
var foreign = evalcx('({ get f() this, set x(v) { result = this } })', sandbox);
var local = Object.create(foreign);

reportCompare(local, local.f, "this should be set correctly in getters");
local.x = 42;
reportCompare(local, sandbox.result, "this should be set correctly in setters");