On the Internet, resources are identified using URLs (Internationalized Resource Identifiers). For example, an SVG file called someDrawing.svg located at http://example.com might have the following URL:
http://example.com/someDrawing.svg
An URL can also address a particular element within an XML document by including an URL fragment identifier as part of the URL. An URL which includes an URL fragment identifier consists of an optional base URL, followed by a "#" character, followed by the URL fragment identifier. For example, the following URL can be used to specify the element whose ID is "Lamppost" within file someDrawing.svg:
http://example.com/someDrawing.svg#Lamppost
Any of the following are invalid references:
Invalid references may or may not be an error (see Error processing), depending on whether the referencing property or attribute defines fallback behavior.
Internationalized Resource Identifiers (URLs) are a more generalized complement to Uniform Resource Identifiers (URIs). An URL is a sequence of characters from the Universal Character Set [UNICODE]. A URI is constructed from a much more restricted set of characters. All URIs are already conformant URLs. A mapping from URLs to URIs is defined by the URL specification, which means that URLs can be used instead of URIs in XML documents, to identify resources. URLs can be converted to URIs for resolution on a network, if the protocol does not support URLs directly.
Previous versions of SVG, following XLink, defined an URL reference type as a URI or as a sequence of characters which must result in an URL after a particular escaping procedure was applied. The escaping procedure was repeated in the XLink 1.0 specification [xlink], and in the W3C XML Schema Part 2: Datatypes specification [xmlschema-2]. This copying introduced the possibility of error and divergence, but was done because the URL specification was not yet standardized.
In this specification, the correct term URL is used for this "URI or sequence of characters plus an algorithm" and the escaping method, which turns URLs into URIs, is defined by reference to the URL specification [rfc3987], which has since become an IETF Proposed Standard. Other W3C specifications are expected to be revised over time to remove these duplicate descriptions of the escaping procedure and to refer to URL directly.
In SVG, most structural relationships between two elements are specified using a URL value in an ‘href’ attribute.
To describe linking relationships, this specification uses two different data types in attribute and property values: URL and <url>. The linking guidelines in this chapter apply to URLs specified with either syntax.
The URL data type is a simple URL string. In SVG, most structural relationships between two elements are specified using a URL value in an ‘href’ attribute.
<url> is different from URL and represents a CSS url()
function value.
(See CSS Values and Units for further details [css-values]). <url>s
may be used for presentation attributes and their corresponding CSS properties
[css-values].
URL is not a valid value for presentation attributes for structural relationships purposes. No non-presentation attribute allows <url> as value.
SVG makes extensive use of URL references, both absolute and relative, to other objects. For example, a ‘linearGradient’ element may be based on another gradient element, so that only the differences between the two need to be specified, by referencing the source gradient with a URL in the ‘href’ attribute:
<linearGradient id="SourceGradient">...</linearGradient> <linearGradient id="MyGradient" href="#SourceGradient">...</linearGradient>
To fill a rectangle with that gradient, the value of the rectangle's fill property may be set so as to include a URL reference to the relevant ‘linearGradient’ element; here is an example:
<rect fill="url(#MyGradient)"/>
URL references are normally specified with an ‘href’ attribute. The value of this attribute forms a reference for the desired resource (or secondary resource, if there is a fragment identifier). The value of the ‘href’ attribute must be a URL.
Because it is impractical for any application to check that a value is an URL reference, this specification follows the lead of the URL Specification in this matter and imposes no such conformance testing requirement on SVG authoring tools. An invalid URL does not make an SVG document non-conforming. SVG user agents are only required to process URLs when needed, as specified in Processing of URL references.
In previous versions of SVG, the ‘href’ attribute was specified in the XLink namespace [xlink] namespace. This usage is now deprecated and instead URL references should be specified using the ‘href’ attribute without a namespace.
For backwards compatibility, the deprecated ‘xlink:href’ attribute is defined below along with the ‘xlink:title’ attribute which has also been deprecated.
Attribute definitions:
Name | Value | Initial value | Animatable |
---|---|---|---|
xlink:href | URL [URL] | (none) | (see below) |
For backwards compatibility, elements with an ‘href’ attribute also recognize an ‘href’ attribute in the XLink namespace [xlink].
When the ‘href’ attribute is present in both the XLink namespace and without a namespace, the value of the attribute without a namespace shall be used. The attribute in the XLink namespace shall be ignored.
A conforming SVG generator must generate ‘href’ attributes without a namespace. However, it may also generate ‘href’ attributes in the XLink namespace to provide backwards compatibility.
This attribute is Animatable if and only if the corresponding ‘href’ attribute is defined to be animatable.
Name | Value | Initial value | Animatable |
---|---|---|---|
xlink:title | <anything> | (none) | no |
Deprecated attribute to describe the meaning of a link or resource in a human-readable fashion. New content should use a ‘title’ child element rather than a ‘xlink:title’ attribute.
The use of this information is highly dependent on the type of processing being done. It may be used, for example, to make titles available to applications used by visually impaired users, or to create a table of links, or to present help text that appears when a user lets a mouse pointer hover over a starting resource.
The ‘title’ attribute, if used, must be in the XLink namespace. Refer to the XML Linking Language (XLink) [xlink].
When using the deprecated XLink attributes ‘xlink:href’ or ‘xlink:title’ an explicit XLink namespace declaration must be provided [xml-names], One simple way to provide such an XLink namespace declaration is to include an ‘xmlns’ attribute for the XLink namespace on the ‘svg’ element for content that uses XLink attributes. For example:
<svg xmlns:xlink="http://www.w3.org/1999/xlink" ...> <image xlink:href="foo.png" .../> </svg>
URLs are processed to identify a resource at the time they are needed, as follows:
Legacy ‘xlink:href’ attributes are processed at the time a corresponding ‘href’ attribute would be processed, but only if no such ‘href’ attribute exists on the element.
Processing a URL involves three steps: generating the absolute URL; fetching the document (if required); identifying the target element (if required).
A URL reference is unresolved until processing either results in an invalid reference or in the identification of the target resource. Unresolved references in the non-presentation attributes of structurally external elements prevent the load event from firing. User agents may place time limits on the resolution of references that are not same-document URL references, after which the reference is treated as a network error (and therefore as an invalid reference).
For same-document URL references in a dynamic document, modifications or animations of attributes or properties, or removal of elements from the DOM, may cause an URL reference to return to the unresolved state. The user agent must once again attempt to resolve the URI to identify the referenced resource.
If the URL reference is relative, its absolute version must be computed before use. The absolute URL should be generated using one of the following methods:
The ‘xml:base’ attribute
will only have an effect in XML documents;
this includes SVG documents and XHTML documents but not HTML documents that are not XML.
In contrast, a base
element
affects relative URLs in any SVG or HTML document,
by altering the document base URL.
If the protocol, such as HTTP, does not support URLs directly, the URL must be converted to a URI by the user agent, as described in section 3.1 of the URL specification [rfc3987].
After generating the absolute URL:
If the URL is being processed following the activation of a link, the user agent must follow the algorithm for navigating to a URL described in the HTML specification [HTML]. The outcome of this algorithm varies depending on the ‘target’ browsing context and security restrictions between browsing contexts, and on whether the link is to the same document as is currently contained in that browsing context (in which case the fragment is navigated without reloading the document). If the document that was navigated was an SVG document, then adjust the target behavior as described in Linking into SVG content.
If the URL being processed is only valid if it refers to a complete document file (such as the ‘href’ attribute of an ‘image’ and ‘script’ element), continue as indicated in Fetching the document (regardless of whether the URL is to the same document or not).
In all other cases, the URL is for a resource to be used in this SVG document. The user agent must parse the URL to separate out the target fragment from the rest of the URL, and compare it with the document base URL. If all parts other than the target fragment are equal, this is a same-document URL reference, and processing the URL must continue as indicated in Identifying the target element with the current document as the referenced document.
Otherwise, the URL references a separate document, and the user agent must continue processing the URL as indicated in Fetching the document.
As defined in CSS Values and Units, a fragment-only URL in a style property must be treated as a same-document URL reference, regardless of the file in which the property was declared.
SVG properties and attributes may reference other documents. When processing such a URL, the user agent should fetch the referenced document as described in this section, except under the following conditions:
If the URL reference is from the href attribute on SVG animation elements, only same-document URL references are allowed [svg-animation]. A URL referring to a different document is invalid and the document must not be fetched.
If the document containing the reference is being processed in secure static mode or secure animated mode, external file references are disallowed. Unless the reference is a data URL, the user agent must treat the reference as if there was a network error, making this an invalid reference.
If any other security restrictions on the browsing context or user agent prevent accessing the external file, then the user agent must treat the reference as if there was a network error.
When fetching external resources from the Internet, user agents must use a potentially CORS-enabled request as defined in HTML [HTML] with the corsAttributeState as follows:
base
The request's origin is computed using the
same rules as HTML,
with an SVG ‘script’ element treated like an HTML script
element,
and an SVG ‘image’ element treated like an HTML img
element.
The default origin behaviour must be set to taint.
A future SVG specification may enable CORS references on other SVG elements with ‘href’ attributes.
If the fetching algorithm results in an error or an empty response body, the reference URL is treated as an invalid reference.
If a valid response is returned, and the valid URL targets for the reference include specific element types, the user agent must continue by Processing the subresource document. Otherwise (if only entire-document the URL references are valid), then the fetched document is the referenced resource.
Otherwise, the subresource must be parsed to identify the target element. If the fetched document is a type that the user agent can parse to create a document object model, it must process it in secure static mode (meaning, do not fetch any additional external resources and do not run scripts or play animations). The document model generated for an external subresource reference must be immutable (read-only) and cannot be modified.
If a document object model can be generated from the fetched file, processing the URL must continue as indicated in Identifying the target element with the parsed subresource document as the referenced document. The user agent may commence the target-identification process prior to completely parsing the document.
User agents may maintain a list of external resource URLs and their associated parsed documents, and may re-use the documents for subsequent references, so long as doing so does not violate the processing mode, caching, and CORS requirements on the resource.
For URL references to a specific element, whether the reference is valid depends on whether the element can be located within the referenced document and whether it is of an allowed type.
Using the referenced document identified in previous processing steps (either an external subresource document or the current document), the target element is identified as follows:
If the URL does not specify a specific element in a target fragment, the target element is the root element of the referenced document.
Otherwise, the URL targets a specific element. If a matching element currently exists in the referenced document, then it is the target element.
Otherwise, there is no currently matching element. If the referenced document is immutable, then the URL reference is invalid. An external subresource document is always immutable once fully parsed; the current document is also immutable once parsed if it is being processed in any mode other than dynamic interactive mode.
Otherwise, observe mutations to the referenced document until the URL can be successfully resolved to define a target element, or until the document becomes immutable (e.g., a non-dynamic document finishes parsing).
The target element provides the referenced resource if (and only if) it is a valid URL target for the reference.
The valid target element types for ‘href’ (or ‘xlink:href’) attributes are based on the element that has the attribute, as follows:
The valid target element types for style properties defined in this specification are as follows:
For references that allow either a reference to a target element, or to an image file (such as the shape-inside, shape-subtract, and mask properties), the user agent must identify the target element and determine whether it is a valid target. If the resolved target element is not an allowed element type, the referenced resource is the entire document file; the target fragment is used in processing that file as with any other image.
In all other cases, if the resolved target element type (or document type) is not allowed for the URL reference, it is an invalid reference.
SVG provides an ‘a’ element, to indicate links (also known as hyperlinks or Web links). An ‘a’ element forms a link if it has a ‘href’ or ‘xlink:href’ attribute; without these attributes the ‘a’ element is an inactive placeholder for a link.
SVG 1.1 defined links in terms of the XLink specification ([XLink]), using attributes defined in the XLink namespace. SVG 2 uses an alternative set of attributes in the default namespace that are consistent with HTML links, and deprecates the XLink attributes.
The ‘a’ element may contain any element that its parent may contain, except for another ‘a’ element; the same element is used for both graphical and textual linked content. Links may not be nested; if an ‘a’ element is a descendent of another hyperlink element (whether in the SVG namespace or another namespace), user agents must ignore its href attribute and treat it as inactive. The invalid ‘a’ element must still be rendered as a generic container element.
The rendering of invalid nested links is at risk, and will likely be synchronized with any decisions regarding the rendering of unknown elements.
For pointer events processing, a linked hit region is defined for each separate rendered element contained within the ‘a’ element (according to the value of their pointer-events property), rather than for the bounding box of the ‘a’ element itself. User agents must also ensure that all links are focusable and can be activated by keyboard commands.
The remote resource (the destination for the link) is defined by a URL specified by the ‘href’ attribute on the ‘a’ element. The remote resource may be any Web resource (e.g., an image, a video clip, a sound bite, a program, another SVG document, an HTML document, an element within the current document, an element within a different document, etc.). In response to user activation of a link (by clicking with the mouse, through keyboard input, voice commands, etc.), user agents should attempt to fetch the specified resource document and either display it or make it available as a downloaded file.
Example link01 assigns a link to an ellipse.
<?xml version="1.0" standalone="no"?> <svg width="5cm" height="3cm" viewBox="0 0 5 3" version="1.1" xmlns="http://www.w3.org/2000/svg"> <desc>Example link01 - a link on an ellipse </desc> <rect x=".01" y=".01" width="4.98" height="2.98" fill="none" stroke="blue" stroke-width=".03"/> <a href="http://www.w3.org"> <ellipse cx="2.5" cy="1.5" rx="2" ry="1" fill="red" /> </a> </svg>
If the above SVG file is viewed by a user agent that supports both SVG and HTML, then clicking on the ellipse will cause the current window or frame to be replaced by the W3C home page.
Attribute definitions:
Name | Value | Initial value | Animatable |
---|---|---|---|
href | URL [URL] | (none) | yes |
Name | Value | Initial value | Animatable |
---|---|---|---|
target | _self | _parent | _top | _blank | <XML-Name> | _self | yes |
This attribute should be used when there are multiple possible targets for the ending resource, such as when the parent document is embedded within an HTML or XHTML document, or is viewed with a tabbed browser. This attribute specifies the name of the browsing context (e.g., a browser tab or an (X)HTML iframe or object element) into which a document is to be opened when the link is activated:
The normative definitions for browsing contexts and security restrictions on navigation actions between browsing contexts is HTML [HTML], specifically the chapter on loading web pages.
Previous versions of SVG defined the special target value '_replace'. It was never well implemented, and the distinction between '_replace' and '_self' has been made redundant by changes in the HTML definition of browsing contexts. Use '_self' to replace the current SVG document.
The value '_new' is not a legal value for target. Use '_blank' to open a document in a new tab/window.
Name | Value | Initial value | Animatable |
---|---|---|---|
download | any value (if non-empty, value represents a suggested file name) | (none) | no |
ping | space-separated valid non-empty URL tokens [HTML] | (none) | no |
rel | space-separated keyword tokens [HTML] | (none) | no |
hreflang | A BCP 47 language tag string [HTML] | (none) | no |
type | A MIME type string [HTML] | (none) | no |
referrerpolicy | A referrer policy string [REFERRERPOLICY] | (none) | no |
a
element in HTML.
Because SVG content often represents a picture or drawing of something, a common need is to link into a particular view of the document, where a view indicates the initial transformations so as to present a closeup of a particular section of the document.
SVG 2 Requirement: | Merge the SVG 1.1 SE text and the SVG Tiny 1.2 text on fragment identifiers link traversal and add media fragments. |
---|---|
Resolution: | SVG 2 will have media fragment identifiers. |
Purpose: | To align with Media Fragments URI. |
Owner: | Cyril (ACTION-3442) |
To link into a particular view of an SVG document, the URL reference with fragment identifier needs to be a correctly formed SVG fragment identifier. An SVG fragment identifier defines the meaning of the "selector" or "fragment identifier" portion of URLs that locate resources of MIME media type "image/svg+xml".
An SVG fragment identifier can come in the following forms:
An SVG fragment identifier is defined as follows:
SVGFragmentIdentifier ::= BareName *( "&" timesegment ) | SVGViewSpec *( "&" timesegment ) | spacesegment *( "&" timesegment ) | timesegment *( "&" spacesegment ) BareName ::= XML_Name SVGViewSpec ::= 'svgView(' SVGViewAttributes ')' SVGViewAttributes ::= SVGViewAttribute | SVGViewAttribute ';' SVGViewAttributes SVGViewAttribute ::= viewBoxSpec | preserveAspectRatioSpec | transformSpec viewBoxSpec ::= 'viewBox(' ViewBoxParams ')' preserveAspectRatioSpec = 'preserveAspectRatio(' AspectParams ')' transformSpec ::= 'transform(' TransformParams ')'
where:
SVG view box parameters are applied in order, as defined in CSS Transforms specification (e.g. SVG view is transformed as defined in ViewBoxParams, then as defined in TransformParams).
Spaces are allowed in fragment specifications. Commas are used to separate numeric values within an SVG view specification (e.g., #svgView(viewBox(0,0,200,200))) and semicolons are used to separate attributes (e.g., #svgView(viewBox(0,0,200,200);preserveAspectRatio(none))).
Fragment identifiers may be url-escaped according to the rules defined in CSS Object Model (CSSOM) specification. For example semicolons can be escaped as %3B to allow animating a (semi-colon separated) list of URLs because otherwise the semicolon would be interpreted as a list separator.
The four types of SVGViewAttribute may occur in any order, but each type may only occur at most one time in a correctly formed SVGViewSpec.
When a source document performs a link into an SVG document, for example via an HTML anchor element ([HTML]; i.e., <a href=...> element in HTML) or an XLink specification [xlink], then the SVG fragment identifier specifies the initial view into the SVG document, as follows:
The ‘view’ element is defined as follows:
We have resolved to remove viewTarget attribute.
Resolution: Paris 2015 F2F Day 3.
Owner: BogdanBrinza.
An SVGElement object represents an ‘a’ element in the DOM.
[Exposed=Window] interface SVGAElement : SVGGraphicsElement { [SameObject] readonly attribute SVGAnimatedString target; attribute DOMString download; attribute USVString ping; attribute DOMString rel; [SameObject, PutForwards=value] readonly attribute DOMTokenList relList; attribute DOMString hreflang; attribute DOMString type; attribute DOMString text; attribute DOMString referrerPolicy; }; SVGAElement includes SVGURIReference; SVGAElement includes HTMLHyperlinkElementUtils;
The target, download, ping, rel, hreflang, type, IDL attributes reflect the content attributes of the same name.
The relList IDL attribute reflects the ‘rel’ content attribute.
The referrerPolicy IDL attribute reflects the ‘referrerpolicy’ content attribute, limited to only known values.
The text IDL attribute, on getting, must return the same value as the textContent IDL attribute on the element, and on setting, must act as if the textContent IDL attribute on the element had been set to the new value.
An SVGViewElement object represents a ‘view’ element in the DOM.
[Exposed=Window] interface SVGViewElement : SVGElement {}; SVGViewElement includes SVGFitToViewBox;