Ray_Net wrote:
WLS wrote:
Ray_Net wrote:
http://chez-momo.fr/mona-lisa.html

Did someone know why SM cannot render the picture ?



Probably for the same reason it doesn't display in Firefox, Chrome, Epiphany or Konquerer. It was designed for IE only.

I think this is a tip it was created with Word and saved as HTML. I could be wrong,

<META content="MSHTML 6.00.2900.6169" name=GENERATOR>

That's not a reason ....Problably because other browsers cannot render as well ......

In the mean time i have found: http://en.wikipedia.org/wiki/Vector_Markup_Language
Where i can read that VML must be replaced by SVG
And http://en.wikipedia.org/wiki/Svg  say:
All major modern web browsers <http://en.wikipedia.org/wiki/Web_browser> have at least some degree of support and render SVG markup <http://en.wikipedia.org/wiki/Markup_language> directly, including Mozilla Firefox <http://en.wikipedia.org/wiki/Mozilla_Firefox>, Internet Explorer 9 <http://en.wikipedia.org/wiki/Internet_Explorer_9>, Google Chrome <http://en.wikipedia.org/wiki/Google_Chrome>, Opera <http://en.wikipedia.org/wiki/Opera_%28browser%29> and Safari <http://en.wikipedia.org/wiki/Safari_%28browser%29>.

So ...now ...... Can someone give us an url where the page is using SVG ?
Don't search for it .... i have an example working with SM and IE9: Here it is:
<?xml version="1.0" encoding="utf-8"?>
<svg
   xmlns="http://www.w3.org/2000/svg";
   version="1.1"
   width="300"
   height="200">
<title>Exemple simple de figure SVG</title>
<desc>
    Cette figure est constituee d'un rectangle,
d'un segment de droite et d'un cercle.
</desc>

<rect
     width="100" height="80"
     x="0" y="70"
     fill="green" />
<line
     x1="5" y1="5"
     x2="250" y2="95"
     stroke="red" />
<circle
     cx="90" cy="80"
     r="50"
     fill="blue" />
<text x="180" y="60">
     Un texte
</text>
</svg>
_______________________________________________
support-seamonkey mailing list
[email protected]
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to