<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>foreignObject test</title>
  <style type="text/css">
   div { text-align: center; color:white }
  </style>
 </head>
 <body>
  <p>There should be a blue circle with the word "TEST" in it below.</p>
  <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400">
   <circle cx="200" cy="200" r="200" fill="navy"/>
   <foreignObject x="0" y="175" width="400" height="50">
    <div xmlns="http://www.w3.org/1999/xhtml"> TEST </div>
   </foreignObject>
  </svg>
 </body>
</html>

