Katharina: Mozilla - Dhtml/Dom

Beitrag lesen

Hallo,

ich hoffe ich nerve nicht. Ich habe jetz extra den ASV6.0 runtergeladen, hatte bisher den ASV von der Adobe-Seite. Ich habe gerade auf einer anderen Website ein Bsp gefunden, das ich zusätzlich testen wollte:

<?xml version="1.0" standalone="yes"?>
<svg width="4in" height="3in"
 xmlns = 'http://www.w3.org/2000/svg'>
  <desc>This example uses the 'switch' element to provide a
        fallback graphical representation of an paragraph, if
        XMHTML is not supported.</desc>
  <!-- The 'switch' element will process the first child element
       whose testing attributes evaluate to true.-->
  <switch>
    <!-- Process the embedded XHTML if the requiredExtensions attribute
         evaluates to true (i.e., the user agent supports XHTML
         embedded within SVG). -->
    <foreignObject width="100" height="50"
                requiredExtensions="http://example.com/SVGExtensions/EmbeddedXHTML">
      <!-- XHTML content goes here -->
      <html xmlns="http://www.w3.org/1999/xhtml">
      <body>
        <p>Here is a paragraph that requires word wrap</p>
      </body>
      </html>
    </foreignObject>
    <!-- Else, process the following alternate SVG.
         Note that there are no testing attributes on the 'text' element.
         If no testing attributes are provided, it is as if there
         were testing attributes and they evaluated to true.-->
    <text font-size="10" font-family="Verdana">
      <tspan x="10" y="10">Teste dieses</tspan>
      <tspan x="10" y="20">Beispiel!!!!</tspan>
    </text>
  </switch>
</svg>

Hier wird aber immer der Text "Teste dieses Beispiel"! ausgegeben. Dachte es sollte "here is a paragraph.." ausgegeben werden. Oder sehe ich das falsch???

VG Kathrin