// Set the width and height attributes on the root 'svg' element.
svgRoot.setAttributeNS(svgNS, "width", "400");
svgRoot.setAttributeNS(svgNS, "height", "450");
// Create the rectangle.
Element rectangle = doc.createElementNS(svgNS, "text");
rectangle.setAttributeNS(svgNS, "x", "10");
rectangle.setAttributeNS(svgNS, "y", "20");
rectangle.setAttributeNS(svgNS, "text", "20");
rectangle.setAttributeNS(svgNS, "width", "100");
rectangle.setAttributeNS(svgNS, "height", "50");