| Index: Source/bindings/v8/custom/V8NodeCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8NodeCustom.cpp b/Source/bindings/v8/custom/V8NodeCustom.cpp
|
| index dbd6defe72d5052455aa3bf2d629731675522e3f..6297875bf83dcae35e162688ade9f92c30b991a5 100644
|
| --- a/Source/bindings/v8/custom/V8NodeCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8NodeCustom.cpp
|
| @@ -129,6 +129,9 @@ void V8Node::appendChildMethodCustom(const v8::FunctionCallbackInfo<v8::Value>&
|
| {
|
| v8::Handle<v8::Object> holder = args.Holder();
|
| Node* imp = V8Node::toNative(holder);
|
| +
|
| + CustomElementCallbackDispatcher::CallbackDeliveryScope deliveryScope;
|
| +
|
| ExceptionCode ec = 0;
|
| Node* newChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
|
| bool success = imp->appendChild(newChild, ec, AttachLazily);
|
|
|