Skip to content

Commit b5753e7

Browse files
committed
changes for publication, link fixes
1 parent 2fdf92e commit b5753e7

1 file changed

Lines changed: 12 additions & 7 deletions

File tree

css-masking-1/Overview.bs

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<pre class=metadata>
22
Title: CSS Masking Module Level 1
3-
Status: ED
3+
Status: CRD
4+
Date: 2021-08-05
5+
Deadline: 2021-09-05
6+
Prepare for TR: yes
47
Work Status: Refining
8+
Implementation Report: https://test.csswg.org/harness/results/css-masking-1_dev/grouped/
59
ED: https://drafts.fxtf.org/css-masking-1/
610
TR: https://www.w3.org/TR/css-masking-1/
711
Previous Version: https://www.w3.org/TR/2014/CR-css-masking-1-20140826/
@@ -15,7 +19,8 @@ Abstract: CSS Masking provides two means for partially or fully hiding portions
1519
Abstract:
1620
Abstract: Masking describes how to use another graphical element or image as a luminance or alpha mask. Typically, rendering an element via CSS or SVG can conceptually be described as if the element, including its children, are drawn into a buffer and then that buffer is composited into the element's parent. Luminance and alpha masks influence the transparency of this buffer before the compositing stage.
1721
Abstract:
18-
Abstract: Clipping describes the visible region of visual elements. The region can be described by using certain SVG graphics elements or basic shapes. Anything outside of this region is not rendered.
22+
Abstract: Clipping describes the visible region of visual elements. The
23+
region can be described by using certain SVG graphics elements or basic shapes. Anything outside of this region is not rendered.
1924
Test Suite: http://test.csswg.org/suites/css-masking/nightly-unstable/
2025
Ignored Vars: trapeze.svg
2126
</pre>
@@ -381,13 +386,13 @@ Note: The 'clip-rule' property does not apply to <<basic-shape>>s.
381386
<div class=example>
382387
<p>The following drawing illustrates the <a value>nonzero</a> rule:</p>
383388
<div class=figure>
384-
<p><img src="images/cliprule-nonzero.svg" alt="Shape with nonzero rule." width="12cm" style="border: solid black 1px;">
389+
<p><img src="images/cliprule-nonzero.svg" alt="Shape with nonzero rule." width="450" style="border: solid black 1px;">
385390

386391
<p class=caption>Three shapes from left to right: Star with 5 points drawn in one continuous, overlapping line; 2 clockwise drawn circles, one contains the other and both are subpaths of the same shape; 2 circles, one containing the other with the bigger one drawn in a clockwise direction and the smaller one in a counter-clockwise direction and both belonging to the same shape. Only the last shape has a "hole".</p>
387392
</div>
388393
<p>The following drawing illustrates the <a value>evenodd</a> rule:</p>
389394
<div class=figure>
390-
<p><img src="images/cliprule-evenodd.svg" alt="Shape with even-odd rule." width="12cm" style="border: solid black 1px;">
395+
<p><img src="images/cliprule-evenodd.svg" alt="Shape with even-odd rule." width="450" style="border: solid black 1px;">
391396

392397
<p class=caption>Three shapes from left to right: Star with 5 points drawn in one continuous, overlapping line; 2 clockwise drawn circles, one contains the other and both are subpaths of the same shape; 2 circles, one containing the other with the bigger one drawn in a clockwise direction and the smaller one in a counter-clockwise direction and both belonging to the same shape. All 3 shapes have a "hole".</p>
393398

@@ -1280,17 +1285,17 @@ User agents must use the <a href="https://fetch.spec.whatwg.org/#main-fetch">pot
12801285
Name: clip
12811286
Value: ''clip/rect()'' | ''clip/auto''
12821287
Initial: auto
1283-
Applies to: Absolutely positioned elements. In SVG, it applies to <a href="https://www.w3.org/TR/SVG/coords.html#EstablishingANewViewport">elements which establish a new viewport</a>, <a element>pattern</a> elements and <a element>mask</a> elements.
1288+
Applies to: Absolutely positioned elements. In SVG, it applies to <a href="https://www.w3.org/TR/SVG/coords.html#EstablishingANewSVGViewport">elements which establish a new viewport</a>, <a element>pattern</a> elements and <a element>mask</a> elements.
12841289
Inherited: no
12851290
Percentages: n/a
12861291
Computed value: as specified
12871292
Media: visual
1288-
Animation type: as <a href="http://dev.w3.org/csswg/css3-transitions/#animtype-rect">rectangle</a>
1293+
Animation type: by <a href="https://drafts.csswg.org/web-animations-1/#animation-type">computed value</a>
12891294
</pre>
12901295

12911296
With this specification the 'clip' property is deprecated. Authors are encouraged to use the 'clip-path' property instead. UAs must support the 'clip' property.
12921297

1293-
The 'clip' property applies only to absolutely positioned elements. In SVG, it applies to <a href="https://www.w3.org/TR/SVG/coords.html#EstablishingANewViewport">elements which establish a new viewport</a>, <a element>pattern</a> elements and <a element>mask</a> elements. Values have the following meanings:
1298+
The 'clip' property applies only to absolutely positioned elements. In SVG, it applies to <a href="https://www.w3.org/TR/SVG/coords.html#EstablishingANewSVGViewport">elements which establish a new viewport</a>, <a element>pattern</a> elements and <a element>mask</a> elements. Values have the following meanings:
12941299

12951300
<dl dfn-type=value dfn-for="clip">
12961301
: auto

0 commit comments

Comments
 (0)