Home | History | Annotate | Download | only in parser

Lines Matching refs:attributeValue

112             String attributeValue = StringImpl::create8BitIfPossible(iter->value);
113 processAttribute(attributeName, attributeValue);
140 void processAttribute(const NameType& attributeName, const String& attributeValue)
143 m_charset = attributeValue;
147 setUrlToLoad(attributeValue);
148 else if (match(attributeName, crossoriginAttr) && !attributeValue.isNull())
149 m_crossOriginMode = stripLeadingAndTrailingHTMLSpaces(attributeValue);
152 setUrlToLoad(attributeValue);
154 m_linkIsStyleSheet = relAttributeIsStyleSheet(attributeValue);
156 m_mediaAttribute = attributeValue;
159 setUrlToLoad(attributeValue);
161 m_inputIsImage = equalIgnoringCase(attributeValue, InputTypeNames::image());
165 static bool relAttributeIsStyleSheet(const String& attributeValue)
167 LinkRelAttribute rel(attributeValue);
171 void setUrlToLoad(const String& attributeValue)
177 m_urlToLoad = stripLeadingAndTrailingHTMLSpaces(attributeValue);