Lines Matching refs:setAttributeNS
409 svg.setAttributeNS(null, 'height', svgheight);
410 svg.setAttributeNS(null, 'width', this.kTimelineWidthPx);
668 rect.setAttributeNS(null, 'class', thing.klass)
669 rect.setAttributeNS(null, 'x', timeToPixel(thing.x - startms));
670 rect.setAttributeNS(null, 'y', thing.y);
671 rect.setAttributeNS(null, 'width', timeToPixel(thing.width));
672 rect.setAttributeNS(null, 'height', thing.height);
677 line.setAttributeNS(null, 'class', thing.klass)
678 line.setAttributeNS(null, 'x1', timeToPixel(thing.x1 - startms));
679 line.setAttributeNS(null, 'y1', thing.y1);
680 line.setAttributeNS(null, 'x2', timeToPixel(thing.x2 - startms));
681 line.setAttributeNS(null, 'y2', thing.y2);