Sha256: e200ba71b7f5b49525de16a7892ad630701e8cdb54ca1a5705338752417e2352
Contents?: true
Size: 494 Bytes
Versions: 51
Compression:
Stored size: 494 Bytes
Contents
"use strict"; const { mixin } = require("../../utils"); const SVGElementImpl = require("./SVGElement-impl").implementation; const SVGTestsImpl = require("./SVGTests-impl").implementation; class SVGGraphicsElementImpl extends SVGElementImpl {} SVGGraphicsElementImpl.attributeRegistry = new Map([ ...SVGElementImpl.attributeRegistry, ...SVGTestsImpl.attributeRegistry ]); mixin(SVGGraphicsElementImpl.prototype, SVGTestsImpl.prototype); exports.implementation = SVGGraphicsElementImpl;
Version data entries
51 entries across 48 versions & 3 rubygems