| Index: Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp b/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| index ebad69529cd6e86c1139e4b3a42679309b199269..218d80585ba34f858c25d0b2cf5f359ad73417f8 100644
|
| --- a/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| @@ -197,12 +197,6 @@ void V8CSSStyleDeclaration::namedPropertyQueryCustom(v8::Local<v8::Name> v8Name,
|
|
|
| void V8CSSStyleDeclaration::namedPropertyGetterCustom(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| - if (!name->IsString())
|
| - return;
|
| - // First look for API defined attributes on the style declaration object.
|
| - if (v8CallBoolean(info.Holder()->HasRealNamedCallbackProperty(info.GetIsolate()->GetCurrentContext(), name.As<v8::String>())))
|
| - return;
|
| -
|
| // Search the style declaration.
|
| CSSPropertyInfo* propInfo = cssPropertyInfo(name.As<v8::String>(), info.GetIsolate());
|
|
|
|
|