svgdom
Version:
Straightforward DOM implementation for SVG, HTML and XML
11 lines (8 loc) • 308 B
JavaScript
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
}
}