[Bug 16377] Define handling of singular 3D transforms

https://www.w3.org/Bugs/Public/show_bug.cgi?id=16377

--- Comment #8 from Dirk Schulze <dschulze@adobe.com> 2012-05-30 03:49:22 UTC ---
(In reply to comment #7)
> Resolution of FX TF: UAs do not render objects with singular matrices, even if
> non-scaling-stroke was defined.

I added the following text:

If a transform function causes the CTM of an object to be non-invertible, the
object and it's content does not get displayed.

EXAMPLE:
The object in the following example gets scaled by 0.

<style>
.box {
    transform: scale(0);
}
</style>

<div class="box">
    Not visible
</div>
The scaling causes a non-invertible CTM for the coordinate space of the div
box. Therefore neither the div box, nor the text in it get displayed.


Anything that should be changed? Can we close the bug?

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Wednesday, 30 May 2012 03:49:25 UTC