index
:
firefox
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
js
/
src
/
jit-test
/
tests
/
proxy
/
bug1095973.js
blob: 6e917a16c8e210062f5594885c7b1a14554c64fd (
plain
)
1
2
3
4
5
var
C
=
{};
var
B
=
new
Proxy
(
C
,
{});
var
A
=
Object
.
create
(
B
);
B
.
x
=
1
;
assertEq
(
C
.
x
,
1
);