Add getAttributeNS to domstubs for SVG example
The closePath method in src/display/svg.js relies on this.
This commit is contained in:
parent
8e9b4b5ff2
commit
4f22ba54bf
@ -77,6 +77,10 @@ function DOMElement(name) {
|
||||
|
||||
DOMElement.prototype = {
|
||||
|
||||
getAttributeNS: function DOMElement_getAttributeNS(NS, name) {
|
||||
return name in this.attributes ? this.attributes[name] : null;
|
||||
},
|
||||
|
||||
setAttributeNS: function DOMElement_setAttributeNS(NS, name, value) {
|
||||
value = value || '';
|
||||
value = xmlEncode(value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user