jsdom
Version:
A JavaScript implementation of many web standards
17 lines (11 loc) • 494 B
JavaScript
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;
;