| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| index 0cc9c9baddb22283131baef596a38da60d55adc2..b857a9eddf3a3ba7d08e2c5f853af652901da290 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| @@ -39,6 +39,7 @@
|
| #include "core/css/CSSStyleDeclaration.h"
|
| #include "core/css/CSSValue.h"
|
| #include "core/css/parser/CSSParser.h"
|
| +#include "core/dom/custom/CustomElementProcessingStack.h"
|
| #include "core/events/EventTarget.h"
|
| #include "core/frame/UseCounter.h"
|
| #include "wtf/ASCIICType.h"
|
| @@ -222,6 +223,8 @@ void V8CSSStyleDeclaration::namedPropertySetterCustom(v8::Local<v8::Name> name,
|
| if (!unresolvedProperty)
|
| return;
|
|
|
| + CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
|
| +
|
| TOSTRING_VOID(V8StringResource<TreatNullAsNullString>, propertyValue, value);
|
| ExceptionState exceptionState(ExceptionState::SetterContext, getPropertyName(resolveCSSPropertyID(unresolvedProperty)), "CSSStyleDeclaration", info.Holder(), info.GetIsolate());
|
| impl->setPropertyInternal(unresolvedProperty, propertyValue, false, exceptionState);
|
|
|