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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGURIReference.idl32 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/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
H A Dop_++.pass.cpp22 std::chrono::hours& href = ++h; local
23 assert(&href == &h);
H A Dop_--.pass.cpp22 std::chrono::hours& href = --h; local
23 assert(&href == &h);
/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 Dcontent_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 Dwebsite_settings_browsertest.js23 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/core/css/
H A DCSSImportRule.idl23 readonly attribute DOMString? href;
H A DStyleRuleImport.h39 static PassRefPtrWillBeRawPtr<StyleRuleImport> create(const String& href, PassRefPtrWillBeRawPtr<MediaQuerySet>);
47 String href() const { return m_strHref; } function in class:blink::StyleRuleImport
65 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) OVERRIDE
67 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
73 void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*);
76 StyleRuleImport(const String& href, PassRefPtrWillBeRawPtr<MediaQuerySet>);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.h38 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) argument
41 return adoptPtrWillBeNoop(new XSLImportRule(parentSheet, href));
47 const String& href() const { return m_strHref; } function in class:blink::FINAL
57 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
59 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/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_org/chrome/common/extensions/docs/server2/
H A Dsidenav_data_source.py42 if item.get('href', '') == path:
46 'href': parent.get('href', None) }
87 href = item.get('href')
88 if href is not None and not href.startswith(('http://', 'https://')):
89 if not href.startswith('/'):
90 logging.warn('Paths in sidenav must be qualified. %s is not.' % href)
92 href
[all...]
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DLinkLoader.cpp114 bool LinkLoader::loadLink(const LinkRelAttribute& relAttribute, const AtomicString& crossOriginMode, const String& type, const KURL& href, Document& document) argument
118 // FIXME: The href attribute of the link element can be in "//hostname" form, and we shouldn't attempt
120 if (settings && settings->dnsPrefetchingEnabled() && href.isValid() && !href.isEmpty())
121 prefetchDNS(href.host());
125 if ((relAttribute.isLinkPrefetch() || relAttribute.isLinkSubresource() || relAttribute.isTransitionExitingStylesheet()) && href.isValid() && document.frame()) {
129 FetchRequest linkRequest(ResourceRequest(document.completeURL(href)), FetchInitiatorTypeNames::link);
137 m_prerender = PrerenderHandle::create(document, this, href, prerenderRelTypes);
138 } else if (m_prerender->url() != href) {
140 m_prerender = PrerenderHandle::create(document, this, href, prerenderRelType
[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);
H A Dcontent.js9 var link = links[i].href.replace(/(.*)#?/, "$1");
13 results.push({ href: link, text: text });
/external/chromium_org/chrome/common/extensions/docs/examples/api/topsites/basic/
H A Dpopup.js8 chrome.tabs.create({ url: event.srcElement.href });
21 a.href = mostVisitedURLs[i].url;
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
H A DTestNode.idl25 attribute DOMString href;

Completed in 2480 milliseconds

1234567891011>>