Sign in
webkit
/
WebKit
/
075931ac30dcae1739e575539dfc139918725298
/
.
/
JSTests
/
stress
/
jsc-shell-test-properties-should-not-be-enumerable.js
blob: ffe4bc634df037b046ac406ff75d6ab803ab5166 [
file
] [
log
] [
blame
]
//@ runDefault
function
bar
(
o
)
{
for
(
var
x in o
)
{
for
(
var
y in o
[
x
])
{
}
}
}
var
foo
=
(
function
()
{
for
(
var
prop in
this
)
{
bar
(
this
[
prop
]);
}
});
foo
();