Searched refs:href (Results 1 - 25 of 418) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGURIReference.idl31 readonly attribute SVGAnimatedString href;
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
H A Dsend_links.js10 // Return an anchor's href attribute, stripping any URL fragment (hash '#').
13 var href = element.href;
14 var hashIndex = href.indexOf('#');
16 href = href.substr(0, hashIndex);
18 return href;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLBaseElement.idl21 attribute DOMString href;
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHyperRef.java19 public HyperRef (final String href, final String text, final boolean nbsp) argument
23 if ((href == null) || (href.length () == 0))
24 throw new IllegalArgumentException ("null or empty input: href");
29 getAttributes ().set (Attribute.HREF, href);
31 // TODO: does href need to be URL-encoded?
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dautofill_options_browsertest.js23 assertEquals(this.browsePreload, document.location.href);
H A Dcontent_options_browsertest.js23 assertEquals(this.browsePreload, document.location.href);
H A Dlanguage_options_browsertest.js23 assertEquals(this.browsePreload, document.location.href);
H A Dpassword_manager_browsertest.js24 assertEquals(this.browsePreload, document.location.href);
H A Dprofile_settings_reset_browsertest.js24 assertEquals(this.browsePreload, document.location.href);
H A Dbrowser_options_browsertest.js30 assertEquals(this.browsePreload, document.location.href);
H A Dcontent_settings_exception_area_browsertest.js32 assertEquals(this.browsePreload, document.location.href);
H A Dsearch_engine_manager_browsertest.js32 assertEquals(this.browsePreload, document.location.href);
H A Dfont_settings_browsertest.js28 assertEquals(this.browsePreload, document.location.href);
40 assertEquals(expectedUrl, installElement.querySelector('a').href);
/external/chromium_org/remoting/webapp/
H A Dcs_third_party_auth_trampoline.js8 chrome.extension.sendMessage(window.location.href);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
H A DTestNode.idl26 attribute DOMString href;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImportRule.idl23 [TreatReturnedNullStringAs=Null] readonly attribute DOMString href;
H A DStyleRuleImport.h38 static PassRefPtr<StyleRuleImport> create(const String& href, PassRefPtr<MediaQuerySet>);
46 String href() const { return m_strHref; } function in class:WebCore::StyleRuleImport
61 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) argument
63 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
69 void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*);
72 StyleRuleImport(const String& href, PassRefPtr<MediaQuerySet>);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.h39 static PassOwnPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) argument
42 return adoptPtr(new XSLImportRule(parentSheet, href));
47 const String& href() const { return m_strHref; } function in class:WebCore::XSLImportRule
57 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
59 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java22 KeywordEntry(String label, String href, String comment) { argument
24 this.href = href;
30 data.setValue(base + ".href", this.href);
43 private String href; field in class:KeywordEntry
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DLinkLoader.cpp101 bool LinkLoader::loadLink(const LinkRelAttribute& relAttribute, const String& type, const KURL& href, Document& document) argument
105 // FIXME: The href attribute of the link element can be in "//hostname" form, and we shouldn't attempt
107 if (settings && settings->dnsPrefetchingEnabled() && href.isValid() && !href.isEmpty())
108 prefetchDNS(href.host());
112 if ((relAttribute.isLinkPrefetch() || relAttribute.isLinkSubresource()) && href.isValid() && document.frame()) {
116 FetchRequest linkRequest(ResourceRequest(document.completeURL(href)), FetchInitiatorTypeNames::link);
122 m_prerender = PrerenderHandle::create(document, this, href);
123 } else if (m_prerender->url() != href) {
125 m_prerender = PrerenderHandle::create(document, this, href);
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
H A Dfeed_iframe.js22 var href = event.currentTarget.href;
23 parent.postMessage(JSON.stringify({type:"show", url:href}), "*");
/external/chromium/chrome/common/extensions/docs/js/
H A Dbootstrap.js21 (window.location.href.match("^file:")) &&
40 location.href = location.href;
43 (window.location.href.match("^file:")) &&
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dsidenav_data_source.py31 if item.get('href', '') == path:
72 href = item.get('href')
73 if href is not None and not href.startswith(('http://', 'https://')):
74 if not href.startswith('/'):
75 logging.warn('Paths in sidenav must be qualified. %s is not.' % href)
77 href = href.lstrip('/')
78 item['href']
[all...]
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_settings_browsertest.js53 assertEquals(this.browsePreload, document.location.href);
86 assertEquals(this.browsePreload, document.location.href);
106 assertEquals(this.browsePreload, document.location.href);
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
H A Dbackground.js10 if (!/^http(s?):\/\//.test(link.href))
13 xhr.open("HEAD", link.href, true);
19 href: link.href,
34 console.error("XHR failed for " + link.href + ", " + e);

Completed in 415 milliseconds

1234567891011>>