[Webkit-unassigned] [Bug 18178] Website claims there is no SVG support

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Apr 1 11:19:53 PDT 2008


http://bugs.webkit.org/show_bug.cgi?id=18178





------- Comment #6 from eric at webkit.org  2008-04-01 11:19 PDT -------
This will get fixed when we turn back on SVG_FILTER support.

FireFox is violating the spec if they claim to support any of these feature
strings:

supported:function(){
var svgFeature="http://www.w3.org/TR/SVG11/feature#SVG";
var supported = (document.implementation &&
(document.implementation.hasFeature("org.w3c.svg","1.0") ||
document.implementation.hasFeature(svgFeature,"1.1")));
return supported;
}

Since all of those strings require SVG filter and SVG animation support.  Both
of which we have partial implementations for, both of which were turned off for
Safari 3.0 and 3.1.  We incorrectly claimed support of these feature strings in
Safari 3.0 (beta), but it was fixed by the final version, IIRC.

We can keep this bug around, but mostly this is just site evangelism. 
OpenLayers.js file is using the easy check (which requires all of SVG) instead
of using finer-grained checks for the features it is actually using.

This bug will "fix itself" if we're successful in getting a GSoC student this
summer interested in SVG Filter completion.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list