Problema no SVG do Mobile Safari

Estou tentando fazer com que uma imagem SVG apareça no navegador padrão do iPhone (ou iPad), mas não consigo obter apenas um reto para aparecer.

Exemplo em:http://www.invalidpage.com/svg/svgtest.html

Fonte:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/html1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
  <head>
    <title>SVG iPhone Test</title>
  </head>
  <body>
    <div>
      <svg width="500" height="220">
        <rect x="2" y="2" width="496" height="216" stroke="#000" stroke-width="2px" fill="transparent"></rect>
      </svg>
    </div>
  </body>
</html>

questionAnswers(8)

yourAnswerToTheQuestion