Searched refs:shadowTemplate (Results 1 – 1 of 1) sorted by relevance
48 v8::Handle<v8::FunctionTemplate> shadowTemplate = data->existingDOMTemplate(&shadowTemplateKey); in wrapInShadowTemplate() local49 if (shadowTemplate.IsEmpty()) { in wrapInShadowTemplate()50 shadowTemplate = v8::FunctionTemplate::New(isolate); in wrapInShadowTemplate()51 if (shadowTemplate.IsEmpty()) in wrapInShadowTemplate()53 shadowTemplate->SetClassName(v8AtomicString(isolate, "HTMLDocument")); in wrapInShadowTemplate()54 shadowTemplate->Inherit(V8HTMLDocument::domTemplate(isolate)); in wrapInShadowTemplate()55 … shadowTemplate->InstanceTemplate()->SetInternalFieldCount(V8HTMLDocument::internalFieldCount); in wrapInShadowTemplate()56 data->setDOMTemplate(&shadowTemplateKey, shadowTemplate); in wrapInShadowTemplate()59 v8::Local<v8::Function> shadowConstructor = shadowTemplate->GetFunction(); in wrapInShadowTemplate()