| Index: Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp b/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp
|
| index da49bd9490a06cb18fc1dba296d8971b3323a52e..60ee7c6ce2aeb6fb191a3dbbf9bde5fb5c0c0e64 100644
|
| --- a/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp
|
| +++ b/Source/bindings/tests/results/V8TestSpecialOperationsInt.cpp
|
| @@ -107,12 +107,10 @@ static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> j
|
|
|
| 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;
|
|
|
| TestSpecialOperationsInt* collection = V8TestSpecialOperationsInt::toNative(info.Holder());
|
| AtomicString propertyName = toCoreAtomicString(name);
|
| @@ -131,12 +129,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;
|
|
|
| TestSpecialOperationsInt* collection = V8TestSpecialOperationsInt::toNative(info.Holder());
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name);
|
|
|