New issue 642 by radicaso...@gmail.com: transform="scale(-1,1)" for text
element results in blank/empty rendering in flash
http://code.google.com/p/svgweb/issues/detail?id=642
What steps will reproduce the problem?
1. Use the object tag to embed an svg file:
<!DOCTYPE html>
<html>
<head>
<script data-cfasync="false" src="svg.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Testing</title>
</head>
<body>
<!--[if !IE]>-->
<object width="300" height="300" data="Desc.svg" type="image/svg+xml"
id="SVGobj"> <!--<![endif]-->
<!--[if lt IE 9]>
<object width="300" height="300" src="Desc.svg" classid="image/svg+xml"
id="SVGobj"> <![endif]-->
<!--[if gte IE 9]>
<object width="300" height="300" data="Desc.svg" type="image/svg+xml"
id="SVGobj"> <![endif]-->
</object>
</body>
</html>
2. Content of svg is as following:
<svg id="main" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="300"
viewBox="-150 0 150 300">
<text x="0" y="100" transform="scale(-1,1)"
style="fill:#000000;font-family:Arial;font-size:16px;">Example Text</text>
</svg>
3.
What is the expected output? What do you see instead?
Expected output are test flipped left. I do not see anything and text does
not render.
What version of the product are you using? On what operating system,
browser, and version of Flash?
Win7, 32bit, IETester (IE8), Flash 11
Please provide any additional information below. Reduced test cases are
always appreciated!
Attachments:
SVGWeb1.png 6.1 KB