Index: Source/bindings/tests/results/V8TestSpecialOperationsNotEnumerable.cpp |
diff --git a/Source/bindings/tests/results/V8TestSpecialOperationsNotEnumerable.cpp b/Source/bindings/tests/results/V8TestSpecialOperationsNotEnumerable.cpp |
index aa96b412d26decaa9b3cb9261420adbc47724543..4a01b0e99991881ab66bd518b0ff8bd147ded3a3 100644 |
--- a/Source/bindings/tests/results/V8TestSpecialOperationsNotEnumerable.cpp |
+++ b/Source/bindings/tests/results/V8TestSpecialOperationsNotEnumerable.cpp |
@@ -89,12 +89,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; |
TestSpecialOperationsNotEnumerable* collection = V8TestSpecialOperationsNotEnumerable::toNative(info.Holder()); |
AtomicString propertyName = toCoreAtomicString(name); |