forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-module-svg-masking.xml
20 lines (17 loc) · 1.77 KB
/
css-module-svg-masking.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<CssModule name="SVG Masking" standard-reference="http://www.w3.org/TR/SVG/masking.html" status="REC" pub-date="2011-08-16">
<CssProperty name="clip-path" version="3.0" type="url" restriction="url, enum" description="Allows authors to control under what circumstances (if any) a particular graphic element can become the target of mouse events." standard-reference="http://www.w3.org/TR/SVG/masking.html#ClipPathElement">
<entry value="none" />
<entry value="inset()" />
<entry value="circle()" />
<entry value="ellipse()" />
<entry value="polygon()" />
</CssProperty>
<CssProperty name="clip-rule" version="3.0" restriction="enum" description="Allows authors to control under what circumstances (if any) a particular graphic element can become the target of mouse events." standard-reference="http://www.w3.org/TR/SVG/masking.html#ClipPathElement">
<entry value="nonzero" description="This rule determines the 'insideness' of a point on the canvas by drawing a ray from that point to infinity in any direction and then examining the places where a segment of the shape crosses the ray." />
<entry value="evenodd" description="This rule determines the 'insideness' of a point on the canvas by drawing a ray from that point to infinity in any direction and counting the number of path segments from the given shape that the ray crosses." />
</CssProperty>
<CssProperty name="mask" version="3.0" browsers="FF3.5,IE10,O9" type="url" restriction="url, enum" description="Allows authors to control under what circumstances (if any) a particular graphic element can become the target of mouse events." standard-reference="http://www.w3.org/TR/SVG/masking.html#ClipPathElement">
<entry value="none" />
</CssProperty>
</CssModule>