Lines Matching refs:attr
81 void HTMLButtonElement::parseMappedAttribute(MappedAttribute* attr)
83 if (attr->name() == typeAttr) {
84 if (equalIgnoringCase(attr->value(), "reset"))
86 else if (equalIgnoringCase(attr->value(), "button"))
90 } else if (attr->name() == alignAttr) {
93 } else if (attr->name() == onfocusAttr) {
94 setAttributeEventListener(eventNames().focusEvent, createAttributeEventListener(this, attr));
95 } else if (attr->name() == onblurAttr) {
96 setAttributeEventListener(eventNames().blurEvent, createAttributeEventListener(this, attr));
98 HTMLFormControlElement::parseMappedAttribute(attr);