27 lines
923 B
JavaScript
27 lines
923 B
JavaScript
|
|
import SVGElement from '../svg-element/SVGElement.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
import SVGAnimatedString from '../../svg/SVGAnimatedString.js';
|
||
|
|
/**
|
||
|
|
* SVGFEMergeNodeElement.
|
||
|
|
*
|
||
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
|
||
|
|
*/
|
||
|
|
export default class SVGFEMergeNodeElement extends SVGElement {
|
||
|
|
// Internal properties
|
||
|
|
[PropertySymbol.in1] = null;
|
||
|
|
/**
|
||
|
|
* Returns in1.
|
||
|
|
*
|
||
|
|
* @returns In1.
|
||
|
|
*/
|
||
|
|
get in1() {
|
||
|
|
if (!this[PropertySymbol.in1]) {
|
||
|
|
this[PropertySymbol.in1] = new SVGAnimatedString(PropertySymbol.illegalConstructor, this[PropertySymbol.window], {
|
||
|
|
getAttribute: () => this.getAttribute('in'),
|
||
|
|
setAttribute: (value) => this.setAttribute('in', value)
|
||
|
|
});
|
||
|
|
}
|
||
|
|
return this[PropertySymbol.in1];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=SVGFEMergeNodeElement.js.map
|