mirror of
https://github.com/servo/servo.git
synced 2025-06-30 12:03:38 +01:00
18 lines
683 B
Text
18 lines
683 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content of this file was automatically extracted from the
|
|
// "CSS Masking Module Level 1" spec.
|
|
// See: https://drafts.fxtf.org/css-masking-1/
|
|
|
|
interface SVGClipPathElement : SVGElement {
|
|
readonly attribute SVGAnimatedEnumeration clipPathUnits;
|
|
readonly attribute SVGAnimatedTransformList transform;
|
|
};
|
|
|
|
interface SVGMaskElement : SVGElement {
|
|
readonly attribute SVGAnimatedEnumeration maskUnits;
|
|
readonly attribute SVGAnimatedEnumeration maskContentUnits;
|
|
readonly attribute SVGAnimatedLength x;
|
|
readonly attribute SVGAnimatedLength y;
|
|
readonly attribute SVGAnimatedLength width;
|
|
readonly attribute SVGAnimatedLength height;
|
|
};
|