Home
last modified time | relevance | path

Searched refs:hrefAttr (Results 1 – 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLAnchorElement.cpp176 if (name == hrefAttr && inDocument()) { in attributeWillChange()
181 argv.append(hrefAttr.toString()); in attributeWillChange()
192 if (name == hrefAttr) { in parseAttribute()
229 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute); in isURLAttribute()
234 return name == hrefAttr || HTMLElement::hasLegalLinkAttribute(name); in hasLegalLinkAttribute()
252 return hasAttribute(hrefAttr); in draggable()
257 return document().completeURL(stripLeadingAndTrailingHTMLSpaces(getAttribute(hrefAttr))); in href()
262 setAttribute(hrefAttr, value); in setHref()
277 return getAttribute(hrefAttr); in input()
337 url.append(stripLeadingAndTrailingHTMLSpaces(fastGetAttribute(hrefAttr))); in handleClick()
[all …]
DHTMLBaseElement.cpp45 if (name == hrefAttr || name == targetAttr) in DEFINE_NODE_FACTORY()
68 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute); in isURLAttribute()
77 const AtomicString& attributeValue = fastGetAttribute(hrefAttr); in href()
93 setAttribute(hrefAttr, value); in setHref()
DHTMLLinkElement.cpp167 } else if (name == hrefAttr) { in parseAttribute()
269 argv.append(fastGetAttribute(hrefAttr)); in insertedInto()
394 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute); in isURLAttribute()
399 return name == hrefAttr || HTMLElement::hasLegalLinkAttribute(name); in hasLegalLinkAttribute()
408 return hrefAttr; in subResourceAttributeName()
415 return document().completeURL(getAttribute(hrefAttr)); in href()
457 if (name == hrefAttr && inDocument()) { in attributeWillChange()
462 argv.append(hrefAttr.toString()); in attributeWillChange()
DHTMLViewSourceDocument.cpp160 if (tagName == baseTag && name == hrefAttr) in processTagToken()
165 bool isLink = name == srcAttr || name == hrefAttr; in processTagToken()
283 base->setAttribute(hrefAttr, href); in addBase()
302 anchor->setAttribute(hrefAttr, url); in addLink()
DLinkResource.cpp72 , m_url(owner->getNonEmptyURLAttribute(hrefAttr)) in LinkRequestBuilder()
DHTMLAnchorElement.h120 …itedLinkHash = blink::visitedLinkHash(document().baseURL(), fastGetAttribute(HTMLNames::hrefAttr)); in visitedLinkHash()
DHTMLCollection.cpp235 …rn (element.hasTagName(aTag) || element.hasTagName(areaTag)) && element.fastHasAttribute(hrefAttr); in isMatchingHTMLElement()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGURIReference.cpp31 : m_href(SVGAnimatedString::create(element, XLinkNames::hrefAttr, SVGString::create())) in SVGURIReference()
39 return attrName.matches(XLinkNames::hrefAttr); in isKnownAttribute()
105 supportedAttributes.add(XLinkNames::hrefAttr); in addSupportedAttributes()
110 if (name.matches(XLinkNames::hrefAttr)) { in parseAttribute()
DSVGFontFaceUriElement.cpp52 …eRawPtr<CSSFontFaceSrcValue> src = CSSFontFaceSrcValue::create(getAttribute(XLinkNames::hrefAttr)); in srcValue()
60 if (name.matches(XLinkNames::hrefAttr)) in parseAttribute()
89 const AtomicString& href = getAttribute(XLinkNames::hrefAttr); in loadFont()
DSVGAltGlyphElement.cpp74 …Element* element = targetElementFromIRIString(getAttribute(XLinkNames::hrefAttr), treeScope(), &ta… in hasValidGlyphElements()
DSVGGlyphRefElement.cpp47 …Element* element = targetElementFromIRIString(getAttribute(XLinkNames::hrefAttr), document(), &gly… in DEFINE_NODE_FACTORY()
DSVGAElement.cpp177 … return attribute.name().localName() == hrefAttr || SVGGraphicsElement::isURLAttribute(attribute); in isURLAttribute()
DSVGElement.cpp1003 animatableAttributes.add(XLinkNames::hrefAttr); in isAnimatableAttribute()
1136 sourceElement->svgAttributeChanged(XLinkNames::hrefAttr); in rebuildAllIncomingReferences()
DSVGUseElement.cpp685 to->removeAttribute(XLinkNames::hrefAttr); in transferUseAttributesToReplacedElement()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentTest.cpp152 link->setAttribute(blink::HTMLNames::hrefAttr, "foo.json"); in TEST_F()
158 link2->setAttribute(blink::HTMLNames::hrefAttr, "bar.json"); in TEST_F()
165 link->setAttribute(blink::HTMLNames::hrefAttr, "http:foo.json"); in TEST_F()
169 link->setAttribute(blink::HTMLNames::hrefAttr, ""); in TEST_F()
173 link->setAttribute(blink::HTMLNames::hrefAttr, "http://example.org/manifest.json"); in TEST_F()
175 link->setAttribute(blink::HTMLNames::hrefAttr, "http://foo.example.org/manifest.json"); in TEST_F()
177 link->setAttribute(blink::HTMLNames::hrefAttr, "http://foo.bar/manifest.json"); in TEST_F()
DVisitedLinkState.cpp44 return element.fastGetAttribute(HTMLNames::hrefAttr); in linkAttribute()
46 return element.getAttribute(XLinkNames::hrefAttr); in linkAttribute()
DLiveNodeListBase.h111 return attrName == HTMLNames::hrefAttr; in shouldInvalidateTypeOnAttributeChange()
DElement.cpp2574 return getURLAttribute(hrefAttr); in hrefURL()
2576 return getURLAttribute(XLinkNames::hrefAttr); in hrefURL()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLPreloadScanner.cpp219 if (match(attributeName, hrefAttr)) in processLinkAttribute()
485 if (const typename Token::Attribute* hrefAttribute = token.getAttributeItem(hrefAttr)) in updatePredictedBaseURL()
DXSSAuditor.cpp489 …didBlockScript |= eraseAttributeIfInjected(request, XLinkNames::hrefAttr, blankURL().string(), Src… in filterScriptToken()
576 return eraseAttributeIfInjected(request, hrefAttr); in filterBaseToken()
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DXSLTSchema.java82 XSLTAttributeDef hrefAttr = new XSLTAttributeDef(null, "href", in build() local
648 new XSLTAttributeDef[]{ hrefAttr }, // EMPTY in build()
655 new XSLTAttributeDef[]{ hrefAttr }, in build()
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
DSVGSMILElement.cpp236 AtomicString href = getAttribute(XLinkNames::hrefAttr); in buildPendingResource()
523 supportedAttributes.add(XLinkNames::hrefAttr); in isSupportedAttribute()
576 else if (attrName.matches(XLinkNames::hrefAttr)) { in svgAttributeChanged()
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageSerializer.cpp243 KURL url = document.completeURL(linkElement.getAttribute(HTMLNames::hrefAttr)); in serializeFrame()
DPrintContext.cpp230 const AtomicString& href = toElement(node)->getAttribute(HTMLNames::hrefAttr); in collectLinkAndLinkedDestinations()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditor.cpp462 urlString = toSVGElement(node)->getAttribute(XLinkNames::hrefAttr); in writeImageNodeToPasteboard()

12