Lines Matching refs:attr
44 void HTMLParamElement::parseMappedAttribute(MappedAttribute* attr)
46 if (attr->name() == idAttributeName()) {
48 HTMLElement::parseMappedAttribute(attr);
51 m_name = attr->value();
52 } else if (attr->name() == nameAttr) {
53 m_name = attr->value();
54 } else if (attr->name() == valueAttr) {
55 m_value = attr->value();
57 HTMLElement::parseMappedAttribute(attr);
60 bool HTMLParamElement::isURLAttribute(Attribute* attr) const
62 if (attr->name() == valueAttr) {
63 Attribute* attr = attributes()->getAttributeItem(nameAttr);
64 if (attr) {
65 const AtomicString& value = attr->value();