Skip to content

Commit 1cfc46a

Browse files
committed
fix shape links
1 parent 156d359 commit 1cfc46a

2 files changed

Lines changed: 36 additions & 23 deletions

File tree

css3-exclusions/Exclusions.src.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ <h3 id="shapes-from-svg-syntax">Shapes from SVG Syntax</h3>
12191219
<h4 id="supported-svg-shapes">Supported SVG Shapes</h4>
12201220
The following SVG shapes are supported by the CSS shapes module.
12211221
<dl>
1222-
<dt>rectangle([&lt;length&gt;|&lt;percentage&gt;]{4} [ curve [&lt;length&gt;|&lt;percentage&gt;]{1,2} ]? )</dt>
1222+
<dt><dfn id="rectangle">rectangle</dfn>([&lt;length&gt;|&lt;percentage&gt;]{4} [ curve [&lt;length&gt;|&lt;percentage&gt;]{1,2} ]? )</dt>
12231223
<dd>
12241224
<ul>
12251225
<li>
@@ -1241,7 +1241,7 @@ <h4 id="supported-svg-shapes">Supported SVG Shapes</h4>
12411241
</li>
12421242
</ul>
12431243
</dd>
1244-
<dt>circle([&lt;length&gt;|&lt;percentage&gt;]{3})</dt>
1244+
<dt><dfn id="circle">circle</dfn>([&lt;length&gt;|&lt;percentage&gt;]{3})</dt>
12451245
<dd>
12461246
<ul>
12471247
<li>
@@ -1256,7 +1256,7 @@ <h4 id="supported-svg-shapes">Supported SVG Shapes</h4>
12561256
</li>
12571257
</ul>
12581258
</dd>
1259-
<dt>ellipse([&lt;length&gt;|&lt;percentage&gt;]{4})</dt>
1259+
<dt><dfn id="ellipse">ellipse</dfn>([&lt;length&gt;|&lt;percentage&gt;]{4})</dt>
12601260
<dd>
12611261
<ul>
12621262
<li>
@@ -1273,7 +1273,7 @@ <h4 id="supported-svg-shapes">Supported SVG Shapes</h4>
12731273
</li>
12741274
</ul>
12751275
</dd>
1276-
<dt>polygon([&lt;fill-rule&gt;,]? [&lt;length&gt;|&lt;percentage&gt;]{2}#)</dt>
1276+
<dt><dfn id="polygon">polygon</dfn>([&lt;fill-rule&gt;,]? [&lt;length&gt;|&lt;percentage&gt;]{2}#)</dt>
12771277
<dd>
12781278
<ul>
12791279
<li><strong>fillRule</strong> - The filling rule used to determine the interior of the
@@ -1547,7 +1547,7 @@ <h4 id="shape-inside-property">The 'shape-inside' Property</h4>
15471547
<dl>
15481548
<dt><dfn title="'shape-inside'!!'&lt;shape&gt;'">&lt;shape&gt;</dfn></dt>
15491549
<dd>
1550-
The shape is computed based on the values of one of 'rectangle',' circle', 'ellipse'
1550+
The shape is computed based on the values of one of 'rectangle', 'circle', 'ellipse'
15511551
or 'polygon'.
15521552
</dd>
15531553
</dl>

css3-exclusions/Overview.html

Lines changed: 31 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040

4141
<h1 id=css-exclusions-module>CSS Exclusions and Shapes Module Level 3</h1>
4242

43-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 20 July 2012</h2>
43+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 27 July 2012</h2>
4444

4545
<dl>
4646
<dt>This version:
4747

4848
<dd><a
4949
href="http://dev.w3.org/csswg/css3-exclusions/">http://dev.w3.org/csswg/css3-exclusions/</a></dd>
50-
<!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-exclusions-20120720/">http://www.w3.org/TR/2012/WD-css3-exclusions-20120720/</a></dd>-->
50+
<!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-exclusions-20120727/">http://www.w3.org/TR/2012/WD-css3-exclusions-20120727/</a></dd>-->
5151

5252
<dt>Latest version:
5353

@@ -1673,8 +1673,9 @@ <h3 id=shapes-from-svg-syntax><span class=secno>4.2. </span>Shapes from SVG
16731673
type and the <code><a href="">&lt;percentage&gt;</a></code> types (see <a
16741674
href="#CSS3VAL" rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>).
16751675
Percentages are resolved from the border box of the element to which the
1676-
property applies. For the radius <code>r</code> of the <code>circle</code>
1677-
shape, a percentage value is resolved as <a
1676+
property applies. For the radius <code>r</code> of the <a
1677+
href="#circle"><code>circle</code></a> shape, a percentage value is
1678+
resolved as <a
16781679
href="http://www.w3.org/TR/SVG/coords.html#Units">specified</a> in the SVG
16791680
recommendation (see <a href="#SVG11"
16801681
rel=biblioentry>[SVG11]<!--{{!SVG11}}--></a>). SVG strokes are not
@@ -1687,8 +1688,9 @@ <h4 id=supported-svg-shapes><span class=secno>4.2.1. </span>Supported SVG
16871688
<p> The following SVG shapes are supported by the CSS shapes module.
16881689

16891690
<dl>
1690-
<dt>rectangle([&lt;length&gt;|&lt;percentage&gt;]{4} [ curve
1691-
[&lt;length&gt;|&lt;percentage&gt;]{1,2} ]? )
1691+
<dt><dfn
1692+
id=rectangle>rectangle</dfn>([&lt;length&gt;|&lt;percentage&gt;]{4} [
1693+
curve [&lt;length&gt;|&lt;percentage&gt;]{1,2} ]? )
16921694

16931695
<dd>
16941696
<ul>
@@ -1703,7 +1705,7 @@ <h4 id=supported-svg-shapes><span class=secno>4.2.1. </span>Supported SVG
17031705
are invalid.
17041706
</ul>
17051707

1706-
<dt>circle([&lt;length&gt;|&lt;percentage&gt;]{3})
1708+
<dt><dfn id=circle>circle</dfn>([&lt;length&gt;|&lt;percentage&gt;]{3})
17071709

17081710
<dd>
17091711
<ul>
@@ -1713,7 +1715,7 @@ <h4 id=supported-svg-shapes><span class=secno>4.2.1. </span>Supported SVG
17131715
circle. A negative value for r is invalid.
17141716
</ul>
17151717

1716-
<dt>ellipse([&lt;length&gt;|&lt;percentage&gt;]{4})
1718+
<dt><dfn id=ellipse>ellipse</dfn>([&lt;length&gt;|&lt;percentage&gt;]{4})
17171719

17181720
<dd>
17191721
<ul>
@@ -1724,7 +1726,8 @@ <h4 id=supported-svg-shapes><span class=secno>4.2.1. </span>Supported SVG
17241726
invalid.
17251727
</ul>
17261728

1727-
<dt>polygon([&lt;fill-rule&gt;,]? [&lt;length&gt;|&lt;percentage&gt;]{2}#)
1729+
<dt><dfn id=polygon>polygon</dfn>([&lt;fill-rule&gt;,]?
1730+
[&lt;length&gt;|&lt;percentage&gt;]{2}#)
17281731

17291732
<dd>
17301733
<ul>
@@ -1928,11 +1931,11 @@ <h4 id=shape-outside-property><span class=secno>4.4.1. </span>The ‘<a
19281931
<dt><dfn id=ltshapegt
19291932
title="'shape-outside'!!'&lt;shape&gt;'">&lt;shape&gt;</dfn>
19301933

1931-
<dd> The shape is computed based on the values of one of ‘<code
1932-
class=property>rectangle</code>’, ‘<code
1933-
class=property>circle</code>’, ‘<code
1934-
class=property>ellipse</code>’ or ‘<code
1935-
class=property>polygon</code>’.
1934+
<dd> The shape is computed based on the values of one of ‘<a
1935+
href="#rectangle"><code class=property>rectangle</code></a>’, ‘<a
1936+
href="#circle"><code class=property>circle</code></a>’, ‘<a
1937+
href="#ellipse"><code class=property>ellipse</code></a>’ or ‘<a
1938+
href="#polygon"><code class=property>polygon</code></a>’.
19361939
</dl>
19371940

19381941
<dl>
@@ -2069,10 +2072,11 @@ <h4 id=shape-inside-property><span class=secno>4.4.2. </span>The ‘<a
20692072
<dt><dfn id=ltshapegt0
20702073
title="'shape-inside'!!'&lt;shape&gt;'">&lt;shape&gt;</dfn>
20712074

2072-
<dd> The shape is computed based on the values of one of ‘<code
2073-
class=property>rectangle</code>’,‘<code class=css> circle</code>’,
2074-
<code class=property>ellipse</code>’ or ‘<code
2075-
class=property>polygon</code>’.
2075+
<dd> The shape is computed based on the values of one of ‘<a
2076+
href="#rectangle"><code class=property>rectangle</code></a>’, ‘<a
2077+
href="#circle"><code class=property>circle</code></a>’, ‘<a
2078+
href="#ellipse"><code class=property>ellipse</code></a>’ or ‘<a
2079+
href="#polygon"><code class=property>polygon</code></a>’.
20762080
</dl>
20772081

20782082
<dl>
@@ -2510,9 +2514,13 @@ <h2 class=no-num id=index>Index</h2>
25102514
<li>authoring tool, <a href="#authoring-tool"
25112515
title="authoring tool"><strong>5.2.</strong></a>
25122516

2517+
<li>circle, <a href="#circle" title=circle><strong>4.2.1.</strong></a>
2518+
25132519
<li>Content area, <a href="#content-area"
25142520
title="Content area"><strong>2.</strong></a>
25152521

2522+
<li>ellipse, <a href="#ellipse" title=ellipse><strong>4.2.1.</strong></a>
2523+
25162524
<li>Exclusion area, <a href="#exclusion-area"
25172525
title="Exclusion area"><strong>2.</strong></a>
25182526

@@ -2528,6 +2536,11 @@ <h2 class=no-num id=index>Index</h2>
25282536
<li>outside-inside, <a href="#outside-and-inside"
25292537
title=outside-inside><strong>2.</strong></a>
25302538

2539+
<li>polygon, <a href="#polygon" title=polygon><strong>4.2.1.</strong></a>
2540+
2541+
<li>rectangle, <a href="#rectangle"
2542+
title=rectangle><strong>4.2.1.</strong></a>
2543+
25312544
<li>renderer, <a href="#renderer" title=renderer><strong>5.2.</strong></a>
25322545

25332546

0 commit comments

Comments
 (0)