(Go: >> BACK << -|- >> HOME <<)

Error found while checking this document as SVG 1.1!

Result: 1 Error, 1 warning(s)
:
: utf-8
: SVG 1.1
Root Element: svg
Root Namespace: http://www.w3.org/2000/svg
Options

Help on the options is available.

Notes and Potential Issues

The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation, or other things affecting the output below. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is highly recommended to check these potential issues, and, if necessary, fix them and re-validate the document.

  1. Info No Character encoding declared at document level

    No character encoding information was found within the document, either in an HTML meta element or an XML declaration. It is often recommended to declare the character encoding in the document itself, especially if there is a chance that the document will be read from or saved to disk, CD, etc.

    See this tutorial on character encoding for techniques and explanations.

↑ Top

Validation Output: 1 Error

  1. Error Line 8, Column 10: value of attribute "id" must be a single token
    	id="Flag of French Guiana">

    This attribute cannot take a space-separated list of words as a value, but only one word ("token"). This may also be caused by the use of a space for the value of an attribute which does not permit it.

↑ Top

Source Listing

Below is the source input I used for this validation:

  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  3. <svg
  4. width="900"
  5. height="600"
  6. xmlns="http://www.w3.org/2000/svg"
  7. id="Flag of French Guiana">
  8. <!--
  9. This file is in the public domain
  10. -->
  11. <polygon fill="#078930" points="0,0 900,0 900,600" />
  12. <polygon fill="#FCDD09" points="0,0 900,600 0,600" />
  13. <polygon fill="#DA121A" id="pentagram" transform="translate(450,300) scale(100) rotate(0)" points="0,-1
  14. 0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155
  15. -0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
  16. 0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
  17. -0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155" />
  18. </svg>

↑ Top