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