HomeSort by relevance Sort by last modified time
    Searched refs:CustomElement (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElement.cpp 32 #include "core/dom/CustomElement.h"
44 Vector<AtomicString>& CustomElement::embedderCustomElementNames()
50 void CustomElement::addEmbedderCustomElementName(const AtomicString& name)
58 static CustomElement::NameSet enabledNameSet()
60 return CustomElement::NameSet((RuntimeEnabledFeatures::customDOMElementsEnabled() ? CustomElement::StandardNames : 0) | (RuntimeEnabledFeatures::embedderCustomElementsEnabled() ? CustomElement::EmbedderNames : 0));
63 bool CustomElement::isValidName(const AtomicString& name, NameSet validNames)
90 void CustomElement::define(Element* element, PassRefPtr<CustomElementDefinition> passDefinition)
98 CustomElementDefinition* CustomElement::definitionFor(Element* element
    [all...]
CustomElement.h 47 class CustomElement {
71 CustomElement();
CustomElementRegistry.h 34 #include "core/dom/CustomElement.h"
58 CustomElementDefinition* registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& name, CustomElement::NameSet validNames, ExceptionState&);
CustomElementRegistrationContext.cpp 37 #include "core/dom/CustomElement.h"
47 void CustomElementRegistrationContext::registerElement(Document* document, CustomElementConstructorBuilder* constructorBuilder, const AtomicString& type, CustomElement::NameSet validNames, ExceptionState& es)
62 ASSERT(CustomElement::isValidName(tagName.localName()));
91 const AtomicString& type = CustomElement::isValidName(element->localName())
106 CustomElement::define(element, definition);
147 ASSERT(!CustomElement::isValidName(element->localName()));
CustomElementRegistrationContext.h 57 void registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& type, CustomElement::NameSet validNames, ExceptionState&);
CustomElementRegistry.cpp 38 #include "core/dom/CustomElement.h"
62 CustomElementDefinition* CustomElementRegistry::registerElement(Document* document, CustomElementConstructorBuilder* constructorBuilder, const AtomicString& userSuppliedName, CustomElement::NameSet validNames, ExceptionState& es)
77 if (!CustomElement::isValidName(type, validNames)) {
Document.h 33 #include "core/dom/CustomElement.h"
    [all...]
Element.cpp 48 #include "core/dom/CustomElement.h"
222 CustomElement::wasDestroyed(this);
    [all...]
Document.cpp 717 if (CustomElement::isValidName(localName) && registrationContext())
741 if (CustomElement::isValidName(qName.localName()) && registrationContext())
757 ScriptValue Document::registerElement(WebCore::ScriptState* state, const AtomicString& name, const Dictionary& options, ExceptionState& es, CustomElement::NameSet validNames)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebCustomElement.cpp 36 #include "core/dom/CustomElement.h"
52 CustomElement::addEmbedderCustomElementName(name);
WebDocument.cpp 288 ScriptValue constructor = document->registerElement(ScriptState::current(), name, dictionary, es, CustomElement::EmbedderNames);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementWrapper.cpp 41 #include "core/dom/CustomElement.h"
81 if (CustomElement::isValidName(element->localName()))
105 CustomElementBinding* binding = perContextData->customElementBinding(CustomElement::definitionFor(element.get()));
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_names.pl 805 #include "CustomElement.h"
862 if (CustomElement::isValidName(qName.localName()) && document->registrationContext()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 48 third_party/WebKit/Source/core/dom/CustomElement.cpp \
webcore_dom.target.darwin-mips.mk 48 third_party/WebKit/Source/core/dom/CustomElement.cpp \
webcore_dom.target.darwin-x86.mk 48 third_party/WebKit/Source/core/dom/CustomElement.cpp \
webcore_dom.target.linux-arm.mk 48 third_party/WebKit/Source/core/dom/CustomElement.cpp \
webcore_dom.target.linux-mips.mk 48 third_party/WebKit/Source/core/dom/CustomElement.cpp \
webcore_dom.target.linux-x86.mk 48 third_party/WebKit/Source/core/dom/CustomElement.cpp \

Completed in 146 milliseconds