W3cubDocs

/SVG

baseProfile

The baseProfile attribute describes the minimum SVG language profile that the author believes is necessary to correctly render the content. The attribute does not specify any processing restrictions; It can be considered metadata. For example, the value of the attribute could be used by an authoring tool to warn the user when they are modifying the document beyond the scope of the specified base profile.

Each SVG profile should define the text that is appropriate for this attribute. If the attribute is not specified, the effect is as if a value of none were specified.

Usage context

Categories None
Value none | full| basic| tiny
Animatable no
Normative document SVG 1.1 (2nd Edition)
none
Represents the minimum SVG language configuration file that does not describe the author's view of the correct rendering of content.
full
Represents a normal profile, defined to be suitable for PCs.
basic
Represents a lightweight profile, defined to be suitable for PDAs.
tiny
Represents an even more lightweight profile, defined to be suitable for cellphones.

Example

<svg width="120" height="120" version="1.1"
 xmlns="http://www.w3.org/2000/svg" baseProfile="full">

  ...

</svg>

Elements

The following elements can use the baseProfile attribute

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/baseProfile