Sign in
webkit
/
WebKit
/
d0ac5b2877d01758b7af37b5e52d1cc2b4b6c4ea
/
.
/
LayoutTests
/
js
/
script-tests
/
instanceof-operator.js
blob: fef991a4a2ca94c6f3360387811fb9115d0a94af [
file
] [
log
] [
blame
]
description
(
"instanceof test"
);
getterCalled
=
false
;
try
{
({}
instanceof
{
get
prototype
(){
getterCalled
=
true
;
}
});
}
catch
(
e
)
{
}
shouldBeFalse
(
"getterCalled"
);