[Webkit-unassigned] [Bug 27243] New: SVG JS bindings "context" pointer needs to move onto binding impls
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Jul 13 17:57:43 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=27243
Summary: SVG JS bindings "context" pointer needs to move onto
binding impls
Product: WebKit
Version: 528+ (Nightly build)
Platform: PC
OS/Version: Mac OS X 10.5
Status: NEW
Severity: Normal
Priority: P2
Component: SVG
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: eric at webkit.org
Blocks: 27088
SVG JS bindings "context" pointer needs to move onto binding impls
Right now many SVG JS bindings have an extra context() parameter which is
stored on the binding object. That puts some SVG bindings up against the cell
size limit. The current plan for bug 27088 is to add a JSGlobaObject* on
DOMObject. That would put these SVG binding classes over the CELL_SIZE limit.
sub IsSVGTypeNeedingContextParameter
{
my $implClassName = shift;
if ($implClassName =~ /SVG/ and not $implClassName =~ /Element/) {
return 1 unless $implClassName =~ /SVGPaint/ or $implClassName =~
/SVGColor/ or $implClassName =~ /SVGDocument/;
}
return 0;
}
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list