diff options
Diffstat (limited to 'school/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js')
-rw-r--r-- | school/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/school/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js b/school/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js new file mode 100644 index 0000000..ef0ec1d --- /dev/null +++ b/school/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js @@ -0,0 +1,16 @@ +"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; |