Searched refs:attributeChanged (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8CustomElementLifecycleCallbacks.h51 static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
58 V8CustomElementLifecycleCallbacks(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
63 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;
H A DV8CustomElementLifecycleCallbacks.cpp51 V(attributeChanged, AttributeChangedCallback)
53 PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged) argument
66 return adoptRef(new V8CustomElementLifecycleCallbacks(scriptState, prototype, created, attached, detached, attributeChanged));
69 static CustomElementLifecycleCallbacks::CallbackType flagSet(v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged) argument
80 if (!attributeChanged.IsEmpty())
92 V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged) argument
93 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged))
101 , m_attributeChanged(scriptState->isolate(), attributeChanged)
203 void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) function in class:blink::V8CustomElementLifecycleCallbacks
H A DCustomElementConstructorBuilder.cpp157 v8::Handle<v8::Function> attributeChanged = retrieveCallback(isolate, "attributeChangedCallback"); local
159 m_callbacks = V8CustomElementLifecycleCallbacks::create(m_scriptState.get(), m_prototype, created, attached, detached, attributeChanged);
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementLifecycleCallbacks.h58 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) = 0;
H A DCustomElementCallbackInvocation.cpp93 callbacks()->attributeChanged(element, m_name, m_oldValue, m_newValue);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DInputTypeView.cpp179 void InputTypeView::attributeChanged() function in class:blink::InputTypeView
H A DInputTypeView.h112 virtual void attributeChanged();
H A DTextFieldInputType.h59 virtual void attributeChanged() OVERRIDE;
H A DTextFieldInputType.cpp359 void TextFieldInputType::attributeChanged() function in class:blink::TextFieldInputType
/external/chromium_org/third_party/polymer/components-chromium/core-input/
H A Dcore-input-extracted.js184 attributeChanged: function(attr, oldVal, curVal) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttr.cpp190 m_element->attributeChanged(qualifiedName(), newValue);
H A DElement.cpp944 void Element::attributeChanged(const QualifiedName& name, const AtomicString& newValue, AttributeModificationReason reason) function in class:blink::Element
1003 attributeChanged(name, newValue, reason);
1137 // Use attributeVector instead of m_elementData because attributeChanged might modify m_elementData.
2782 attributeChanged(name, value);
2789 attributeChanged(name, value);
2796 attributeChanged(name, nullAtom);
H A DElement.h277 virtual void attributeChanged(const QualifiedName&, const AtomicString&, AttributeModificationReason = ModifiedDirectly);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.h202 virtual void attributeChanged(const QualifiedName&, const AtomicString&, AttributeModificationReason = ModifiedDirectly) OVERRIDE;
H A DSVGElement.cpp844 void SVGElement::attributeChanged(const QualifiedName& name, const AtomicString& newValue, AttributeModificationReason) function in class:blink::SVGElement
846 Element::attributeChanged(name, newValue);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.cpp457 attributeChanged(heightAttr, height->value());
459 attributeChanged(widthAttr, width->value());
461 attributeChanged(alignAttr, align->value());
741 m_inputTypeView->attributeChanged();

Completed in 1736 milliseconds