Searched refs:attributeValue (Results 1 - 10 of 10) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLBaseElement.cpp86 const AtomicString& attributeValue = fastGetAttribute(hrefAttr); local
87 if (attributeValue.isNull())
91 KURL(document()->url(), stripLeadingAndTrailingHTMLSpaces(attributeValue)) :
92 KURL(document()->url(), stripLeadingAndTrailingHTMLSpaces(attributeValue), document()->decoder()->encoding());
H A DHTMLTextFormControlElement.cpp126 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr); local
127 if (!attributeValue.contains(newlineCharacter) && !attributeValue.contains(carriageReturn))
128 return attributeValue;
131 unsigned length = attributeValue.length();
134 UChar character = attributeValue[i];
146 const AtomicString& attributeValue = fastGetAttribute(placeholderAttr); local
147 return attributeValue.string().find(isNotLineBreak) == notFound;
H A DHTMLElement.cpp1141 void HTMLElement::addHTMLColorToStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& attributeValue) argument
1144 if (attributeValue.isEmpty())
1147 String colorString = attributeValue.stripWhiteSpace();
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLPreloadScanner.cpp126 String attributeValue = StringImpl::create8BitIfPossible(iter->value); local
127 processAttribute(attributeName, attributeValue);
167 void processAttribute(const NameType& attributeName, const String& attributeValue) argument
170 m_charset = attributeValue;
174 setUrlToLoad(attributeValue);
175 else if (match(attributeName, crossoriginAttr) && !attributeValue.isNull())
176 m_crossOriginMode = stripLeadingAndTrailingHTMLSpaces(attributeValue);
179 setUrlToLoad(attributeValue);
181 m_linkIsStyleSheet = relAttributeIsStyleSheet(attributeValue);
183 m_linkMediaAttributeIsScreen = linkMediaAttributeIsScreen(attributeValue);
192 relAttributeIsStyleSheet(const String& attributeValue) argument
198 linkMediaAttributeIsScreen(const String& attributeValue) argument
211 setUrlToLoad(const String& attributeValue) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DFormSubmission.cpp157 String attributeValue; local
158 if (!(attributeValue = submitButton->getAttribute(formactionAttr)).isNull())
159 copiedAttributes.parseAction(attributeValue);
160 if (!(attributeValue = submitButton->getAttribute(formenctypeAttr)).isNull())
161 copiedAttributes.updateEncodingType(attributeValue);
162 if (!(attributeValue = submitButton->getAttribute(formmethodAttr)).isNull())
163 copiedAttributes.updateMethodType(attributeValue);
164 if (!(attributeValue = submitButton->getAttribute(formtargetAttr)).isNull())
165 copiedAttributes.setTarget(attributeValue);
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXMLViewer.js346 var attributeValue = createHTMLElement('span');
347 attributeValue.classList.add('webkit-html-attribute-value');
348 attributeValue.textContent = attributeNode.value;
355 attribute.appendChild(attributeValue);
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/expat/xmlwf/
H A Dxmlwf.c84 static void attributeValue(FILE *fp, const XML_Char *s) function
156 attributeValue(fp, *atts);
196 attributeValue(fp, name);
220 attributeValue(fp, *atts);
223 attributeValue(fp, name);
/macosx-10.9.5/expat-12/expat/xmlwf/
H A Dxmlwf.c64 attributeValue(FILE *fp, const XML_Char *s) function
138 attributeValue(fp, *atts);
181 attributeValue(fp, name);
205 attributeValue(fp, *atts);
208 attributeValue(fp, name);
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/generic/
H A Ddom.c2781 const char *attributeValue
2805 attributeValue, &hnew);
2811 attr->valueLength = strlen(attributeValue);
2813 strcpy(attr->nodeValue, attributeValue);
2827 attr->valueLength = strlen(attributeValue);
2829 strcpy(attr->nodeValue, attributeValue);
2852 const char *attributeValue,
2865 DBG(fprintf (stderr, "domSetAttributeNS: attributeName %s, attributeValue %s, uri %s\n", attributeName, attributeValue, uri);)
2883 if (ns && (strcmp (ns->uri, attributeValue)
2847 domSetAttributeNS( domNode *node, const char *attributeName, const char *attributeValue, const char *uri, int createNSIfNeeded ) argument
[all...]
H A Ddom.h739 const char *attributeValue);
742 const char *attributeValue,

Completed in 120 milliseconds