You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
494 B
17 lines
494 B
|
3 years ago
|
"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;
|