Lines Matching refs:attr
53 void HTMLAreaElement::parseMappedAttribute(MappedAttribute* attr)
55 if (attr->name() == shapeAttr) {
56 if (equalIgnoringCase(attr->value(), "default"))
58 else if (equalIgnoringCase(attr->value(), "circle"))
60 else if (equalIgnoringCase(attr->value(), "poly"))
62 else if (equalIgnoringCase(attr->value(), "rect"))
64 } else if (attr->name() == coordsAttr) {
65 m_coords.set(newCoordsArray(attr->value().string(), m_coordsLen));
66 } else if (attr->name() == altAttr || attr->name() == accesskeyAttr) {
69 HTMLAnchorElement::parseMappedAttribute(attr);