Index: Source/bindings/tests/results/V8TestObject.cpp |
diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp |
index 8cd637b3423d9ce766b484d68d952363cac0daed..8588d7784666054f545af5baa04891cc32030a32 100644 |
--- a/Source/bindings/tests/results/V8TestObject.cpp |
+++ b/Source/bindings/tests/results/V8TestObject.cpp |
@@ -5227,12 +5227,10 @@ static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCall |
static void namedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
- if (!info.Holder()->GetRealNamedPropertyInPrototypeChain(name).IsEmpty()) |
- return; |
- if (info.Holder()->HasRealNamedCallbackProperty(name)) |
- return; |
if (info.Holder()->HasRealNamedProperty(name)) |
return; |
+ if (!info.Holder()->GetRealNamedPropertyInPrototypeChain(name).IsEmpty()) |
+ return; |
TestObj* collection = V8TestObject::toNative(info.Holder()); |
AtomicString propertyName = toCoreAtomicString(name); |