Commit 355104d4 by Sergiu Dumitriu

Invalid "r" attribute on SVG rect nodes

parent 780ad9d7
...@@ -1171,7 +1171,7 @@ window.Raphael && window.Raphael.svg && function(R) { ...@@ -1171,7 +1171,7 @@ window.Raphael && window.Raphael.svg && function(R) {
var el = $("rect"); var el = $("rect");
svg.canvas && svg.canvas.appendChild(el); svg.canvas && svg.canvas.appendChild(el);
var res = new Element(el, svg); var res = new Element(el, svg);
res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"}; res.attrs = {x: x, y: y, width: w, height: h, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"};
res.type = "rect"; res.type = "rect";
$(el, res.attrs); $(el, res.attrs);
return res; return res;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -6926,7 +6926,7 @@ ...@@ -6926,7 +6926,7 @@
var el = $("rect"); var el = $("rect");
svg.canvas && svg.canvas.appendChild(el); svg.canvas && svg.canvas.appendChild(el);
var res = new Element(el, svg); var res = new Element(el, svg);
res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"}; res.attrs = {x: x, y: y, width: w, height: h, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"};
res.type = "rect"; res.type = "rect";
$(el, res.attrs); $(el, res.attrs);
return res; return res;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment