Index: Source/bindings/tests/results/V8TestSpecialOperationsAnonymous.cpp |
diff --git a/Source/bindings/tests/results/V8TestSpecialOperationsAnonymous.cpp b/Source/bindings/tests/results/V8TestSpecialOperationsAnonymous.cpp |
index c4ace33badbc3e5b5b2ea4489e9eab5785c2bd0e..475abf31198c5487a3401acb8bf34d4385cd6b26 100644 |
--- a/Source/bindings/tests/results/V8TestSpecialOperationsAnonymous.cpp |
+++ b/Source/bindings/tests/results/V8TestSpecialOperationsAnonymous.cpp |
@@ -121,12 +121,10 @@ static void indexedPropertyDeleterCallback(uint32_t index, const v8::PropertyCal |
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; |
TestSpecialOperationsAnonymous* collection = V8TestSpecialOperationsAnonymous::toNative(info.Holder()); |
AtomicString propertyName = toCoreAtomicString(name); |
@@ -145,12 +143,10 @@ static void namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::Pr |
static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> jsValue, 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; |
TestSpecialOperationsAnonymous* collection = V8TestSpecialOperationsAnonymous::toNative(info.Holder()); |
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name); |