Sign in
chromium
/
external
/
WebKit_LayoutTests
/
master
/
.
/
fast
/
js
/
script-tests
/
instanceof-operator.js
blob: fef991a4a2ca94c6f3360387811fb9115d0a94af [
file
]
description
(
"instanceof test"
);
getterCalled
=
false
;
try
{
({}
instanceof
{
get
prototype
(){
getterCalled
=
true
;
}
});
}
catch
(
e
)
{
}
shouldBeFalse
(
"getterCalled"
);