[webkit-dev] Signing up to help with some SVG bugs

2010-01-28 Thread Mark Wyszomierski
Hi,

I am experiencing a bug with the SVG module, I believe defined by the
following two bug entries:

  https://bugs.webkit.org/show_bug.cgi?id=34301
  https://bugs.webkit.org/show_bug.cgi?id=17043

The problem I'm having is that creating an animateMotion element in
javascript will never get executed (works fine if defined in the body of the
document though). So issue #17043 states that there is a missing idl file
for animateMotion. I am guessing this is why elements created via
javascript do nothing.

That issue hasn't been updated since 2008, I'm wondering if I can help out
with it? Is there a group already focusing on the SVG module? I'd like to
help out with some of these other bugs SVG bugs too. I'm not sure how people
are organizing themselves to tackle bugs with webkit, if there is another
method for helping out, please let me know,

Thanks,
Mark
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] hit testing?

2008-11-27 Thread Mark Wyszomierski
Hi,
I'm wondering if webkit exposes any method to do a virtual hit testing via
javascript. I'm looking to use some method like:

function hittest(int x, int y)
{
for (all nodes in DOM) {
return top-most node that gets intersected;
}

return null;
}

Not sure if this is the right place to asking, I cannot find information
elsewhere. I'm targeting only safari which I believe uses webkit, so, I just
wanted to know if any such functionality in the base might exist so a
javascript function might exist,

Thanks
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev