- From: Helder Magalhães <helder.magalhaes@gmail.com>
- Date: Sun, 31 Jan 2010 19:43:32 +0000
- To: Doug Schepers <schepers@w3.org>
- Cc: www-svg <www-svg@w3.org>
Hi everyone, > After crawling a bit on why, I believe I may have bumped > into a test case issue. The current markup is: > > <clipPath id='c' clipPathUnits='userSpaceOnUse' x='10' y='80' > width='50' height='50'/> > > It contains x, y, width and height properties as if there was a child > rectangle defined. If the above is confirmed, then the "interact-pointer-01-t.svg" [1] is also affected. Current markup: <mask id="m" maskUnits="userSpaceOnUse" x="10" y="80" width="50" height="50"/> Modification in order to "pass" in Batik (which seem to have a bug in dealing with empty clipPath/mask elements): <mask id="m" maskUnits="userSpaceOnUse"> <rect width="0" height="0"/> </mask> Please shed some light on this. Thanks, Helder [1] http://dev.w3.org/SVG/profiles/1.1F2/test/svg/interact-pointer-01-t.svg
Received on Sunday, 31 January 2010 19:44:26 UTC