[Webkit-unassigned] [Bug 12171] New: Remove "points" hack from SVGPolyElement
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Jan 8 16:01:53 PST 2007
http://bugs.webkit.org/show_bug.cgi?id=12171
Summary: Remove "points" hack from SVGPolyElement
Product: WebKit
Version: 420+ (nightly)
Platform: Macintosh
OS/Version: Mac OS X 10.4
Status: NEW
Severity: Normal
Priority: P2
Component: SVG
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: macdome at opendarwin.org
SVGPolyElement has a grotesque hack in order to enable getAttribute("points")
working correctly.
We have to be able to come up with a nicer solution:
void SVGPolyElement::notifyAttributeChange() const
{
if (m_ignoreAttributeChanges || ownerDocument()->parsing())
return;
m_ignoreAttributeChanges = true;
SVGStyledElement::notifyAttributeChange();
ExceptionCode ec = 0;
// Spec: Additionally, the 'points' attribute on the original element
// accessed via the XML DOM (e.g., using the getAttribute() method call)
// will reflect any changes made to points.
String _points;
int len = points()->numberOfItems();
for (int i = 0; i < len; ++i) {
FloatPoint p = points()->getItem(i, ec);
_points += String::format("%.6lg %.6lg ", p.x(), p.y());
}
RefPtr<Attr> attr =
const_cast<SVGPolyElement*>(this)->getAttributeNode(SVGNames::pointsAttr.localName());
if (attr) {
ExceptionCode ec = 0;
attr->setValue(_points, ec);
}
m_ignoreAttributeChanges = false;
}
--
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