Status: Available
Owner: ----
CC: [email protected],  [email protected]
Labels: Type-Bug Pri-2 OS-All Area-Webkit Mstone-X NeedsReduction

New issue 25925 by [email protected]: Chrome doesn't implement some SVG  
transforms
http://code.google.com/p/chromium/issues/detail?id=25925

Navigate to http://www.dailymotion.com/openvideodemo while spoofing the
user agent string as Firefox 3.5.  You'll see a video that can be
transformed via SVG... but not all of the transforms work.

Specifically, this is the code doing the transformations:

feGaussianBlur, feConvolveMatrix, feColorMatrix

<style>
            .doblur { filter: url(#blurFilter); }
            #ambilight { filter: url(#ambilighFilter); }

            .doedge { filter: url(#edgeFilter); }
            .docolor { filter: url(#colorFilter); }
            .domask { mask: url(#m1); }


            </style>

            <svg:svg height="0" xmlns="http://www.w3.org/2000/svg";>
            <filter id="blurFilter">
            <feGaussianBlur stdDeviation="5"/>
            </filter>
            <filter id="ambilighFilter">
            <feGaussianBlur stdDeviation="40"/>
            </filter>

            <filter id="edgeFilter">

            <feConvolveMatrix filterRes="100 100" style="color-
interpolation-filters:sRGB"
            order="3" kernelMatrix="0 -1 0   -1 4 -1   0 -1 0"
preserveAlpha="true"/>
            </filter>

            <filter id="colorFilter">
            <feColorMatrix values="1.5 0 0 0 0
                             0 0.25 0 0 0
                             0 0 0.25 0 0
                             0 0 0 1 0" style="color-interpolation-
filters:sRGB"/>
            </filter>
</svg:svg>

This may actually be a Webkit problem -- we need to turn this into a
reduction and test.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to