<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="400px" height="400px">
 <!-- Version is not required, but xmlns is for FireFox 2.0.0.14 to render -->
 <!-- version="1.1" removed above -->
 <!-- Oddly enough, height and width are NOT required for the SVG -->
 <!-- But are probably a good idea -->
 <!-- xml processing first line turned out to be necessary for FireFox 3 RC1 to render on windows -->
 <!-- Oddly enough, the document is now well formed -->
 <title>Minimalistic rendering but non-conforming SVG</title>
 <rect stroke="black" stroke-width="2px" fill="none" x="10" y="10" width="300" height="300" />
 <rect stroke="black" stroke-width="2px" fill="aqua" x="60" y="60" width="200" height="200" />
</svg>