UNPKG

svgdom

Version:

Straightforward DOM implementation for SVG, HTML and XML

11 lines (8 loc) 308 B
import { SVGAnimatedLength } from './SVGAnimatedLength.js' import { SVGGraphicsElement } from './SVGGraphicsElement.js' export class SVGTextContentElement extends SVGGraphicsElement { textWidth = new SVGAnimatedLength(this, 'textWidth') getComputedTextLength () { return this.getBBox().width } }