Home | History | Annotate | Download | only in html

Lines Matching refs:attr

173 void HTMLSelectElement::parseMappedAttribute(MappedAttribute* attr) 
176 if (attr->name() == sizeAttr) {
180 int size = attr->value().toInt();
182 if (attrSize != attr->value())
183 attr->setValue(attrSize);
191 } else if (attr->name() == multipleAttr)
192 SelectElement::parseMultipleAttribute(m_data, this, attr);
193 else if (attr->name() == accesskeyAttr) {
195 } else if (attr->name() == alignAttr) {
198 } else if (attr->name() == onfocusAttr) {
199 setAttributeEventListener(eventNames().focusEvent, createAttributeEventListener(this, attr));
200 } else if (attr->name() == onblurAttr) {
201 setAttributeEventListener(eventNames().blurEvent, createAttributeEventListener(this, attr));
202 } else if (attr->name() == onchangeAttr) {
203 setAttributeEventListener(eventNames().changeEvent, createAttributeEventListener(this, attr));
205 HTMLFormControlElementWithState::parseMappedAttribute(attr);