8000 (Just a merge, no changes) · simonwuelker/csswg-drafts@067abbe · GitHub
Skip to content

Commit 067abbe

Browse files
committed
(Just a merge, no changes)
2 parents 7c0b3f6 + cd8d0b4 commit 067abbe

11 files changed

Lines changed: 155 additions & 138 deletions

File tree

css-module/Overview.src.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,10 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
7171

7272
<h2 class="no-num no-toc" id="abstract">Abstract</h2>
7373

74-
<p>CSS is a language for describing the rendering of structured documents
75-
(such as HTML and XML) on screen, on paper, in speech, etc. This module
76-
contains the features of CSS relating to <var class="replaceme">DESCRIBE HERE</var>.
74+
<p><a href="http://www.w3.org/TR/CSS/">CSS</a> is a language for describing
75+
the rendering of structured documents (such as HTML and XML) on screen, on
76+
paper, in speech, etc. This module contains the features of CSS relating to
77+
<var class="replaceme">DESCRIBE HERE</var>.
7778
It includes and extends the functionality of <var class="replaceme">CSS level&nbsp;2 [[!CSS21]],
7879
which builds on CSS level&nbsp;1 [[CSS1]]</var>.
7980
The main extensions compared to <var class="replaceme">level&nbsp;2</var> are <var class="replaceme">SUMMARIZE HERE</var>.

css3-animations/Overview.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html lang=en>
55
<head>
66
<title>CSS Animations</title>
7+
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
78
<link href="../default.css" rel=stylesheet type="text/css">
89
<link href="http://www.w3.org/StyleSheets/TR/W3C-ED.css" rel=stylesheet
910
type="text/css">
@@ -27,7 +28,7 @@ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 29 March 2012</h2>
2728
<dt>Latest version:
2829

2930
<dd><a
30-
href="http://www.w3.org/TR/css3-animations">http://www.w3.org/TR/css3-animations/</a>
31+
href="http://www.w3.org/TR/css3-animations/">http://www.w3.org/TR/css3-animations/</a>
3132

3233

3334
<dt>Editor's draft:

css3-animations/Overview.src.html

Lines changed: 101 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN'
1+
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN'
22
'http://www.w3.org/TR/html4/strict.dtd'>
33

44
<html lang="en">
55
<head>
66
<title>CSS Animations</title>
7+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
78
<link rel="stylesheet" type="text/css" href="../default.css">
89
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-ED.css">
910
</head>
@@ -22,7 +23,7 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
2223
<!--http://www.w3.org/TR/[YEAR]/WD-[SHORTNAME]-[CDATE]-->
2324
<dt>Latest version:
2425
<dd><a
25-
href="http://www.w3.org/TR/css3-animations">[LATEST]</a>
26+
href="http://www.w3.org/TR/css3-animations/">[LATEST]</a>
2627
<dt>Editor's draft:
2728
<dd><a href="http://dev.w3.org/csswg/[SHORTNAME]/">http://dev.w3.org/csswg/[SHORTNAME]/</a>
2829

@@ -1512,108 +1513,108 @@ <h2>
15121513
</dd>
15131514
<dt>
15141515
<b>Methods</b>
1515-
<dd>
1516-
<dl>
1517-
<!-- ======================================================================================================= -->
1518-
<dt>
1519-
<code class='method-name'><a id="DOM-CSSKeyframesRule-appendRule" name='DOM-CSSKeyframesRule-appendRule'>appendRule</a></code>
1520-
</dt>
1521-
<dd>
1522-
<div class='method'>
1523-
The <code>appendRule</code> method appends the passed CSSKeyframeRule into the list at the passed key.
1524-
<div class='parameters'>
1525-
<b>Parameters</b>
1526-
<div class='paramtable'>
1527-
<dl>
1528-
<dt>
1529-
<code class='parameter-name'>rule</code> of type <code>DOMString</code>
1530-
</dt>
1531-
<dd>
1532-
The rule to be appended, expressed in the same syntax as one entry in the
1533-
<code>@keyframes</code> rule.
1534-
</dd>
1535-
</dl>
1536-
</div>
1537-
</div><!-- parameters -->
1538-
<div class='return-value'>
1539-
<b>No Return Value</b>
1540-
</div>
1541-
<div>
1542-
<b>No Exceptions</b>
1543-
</div>
1544-
</div><!-- ======================================================================================================= -->
1545-
</dd>
1546-
<dt>
1547-
<code class='method-name'><a id="DOM-CSSKeyframesRule-deleteRule" name='DOM-CSSKeyframesRule-deleteRule'>deleteRule</a></code>
1548-
</dt>
1549-
<dd>
1550-
<div class='method'>
1551-
The <code>deleteRule</code> method deletes the CSSKeyframeRule with the passed key. If a rule with this key
1552-
does not exist, the method does nothing.
1553-
<div class='parameters'>
1554-
<b>Parameters</b>
1555-
<div class='paramtable'>
1556-
<dl>
1557-
<dt>
1558-
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1559-
</dt>
1560-
<dd>
1561-
The key which describes the rule to be deleted. The key must
1562-
resolve to a number between 0 and 1, or the rule is ignored.<br>
1563-
</dd>
1564-
</dl>
1565-
</div>
1566-
</div><!-- parameters -->
1567-
<div class='return-value'>
1568-
<b>No Return Value</b>
1516+
</dt>
1517+
<dd>
1518+
<dl>
1519+
<!-- ======================================================================================================= -->
1520+
<dt>
1521+
<code class='method-name'><a id="DOM-CSSKeyframesRule-appendRule" name='DOM-CSSKeyframesRule-appendRule'>appendRule</a></code>
1522+
</dt>
1523+
<dd>
1524+
<div class='method'>
1525+
The <code>appendRule</code> method appends the passed CSSKeyframeRule into the list at the passed key.
1526+
<div class='parameters'>
1527+
<b>Parameters</b>
1528+
<div class='paramtable'>
1529+
<dl>
1530+
<dt>
1531+
<code class='parameter-name'>rule</code> of type <code>DOMString</code>
1532+
</dt>
1533+
<dd>
1534+
The rule to be appended, expressed in the same syntax as one entry in the
1535+
<code>@keyframes</code> rule.
1536+
</dd>
1537+
</dl>
15691538
</div>
1570-
<div>
1571-
<b>No Exceptions</b>
1539+
</div><!-- parameters -->
1540+
<div class='return-value'>
1541+
<b>No Return Value</b>
1542+
</div>
1543+
<div>
1544+
<b>No Exceptions</b>
1545+
</div>
1546+
</div><!-- ======================================================================================================= -->
1547+
</dd>
1548+
<dt>
1549+
<code class='method-name'><a id="DOM-CSSKeyframesRule-deleteRule" name='DOM-CSSKeyframesRule-deleteRule'>deleteRule</a></code>
1550+
</dt>
1551+
<dd>
1552+
<div class='method'>
1553+
The <code>deleteRule</code> method deletes the CSSKeyframeRule with the passed key. If a rule with this key
1554+
does not exist, the method does nothing.
1555+
<div class='parameters'>
1556+
<b>Parameters</b>
1557+
<div class='paramtable'>
1558+
<dl>
1559+
<dt>
1560+
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1561+
</dt>
1562+
<dd>
1563+
The key which describes the rule to be deleted. The key must
1564+
resolve to a number between 0 and 1, or the rule is ignored.<br>
1565+
</dd>
1566+
</dl>
15721567
</div>
1573-
</div><!-- ======================================================================================================= -->
1574-
</dd>
1575-
<dt>
1576-
<code class='method-name'><a id="DOM-CSSKeyframesRule-findRule" name='DOM-CSSKeyframesRule-findRule'>findRule</a></code>
1577-
</dt>
1578-
<dd>
1579-
<div class='method'>
1580-
The <code>findRule</code> method returns the rule with a key matching the passed key. If no such rule
1581-
exists, a null value is returned.
1582-
<div class='parameters'>
1583-
<b>Parameters</b>
1584-
<div class='paramtable'>
1585-
<dl>
1586-
<dt>
1587-
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1588-
</dt>
1589-
<dd>
1590-
The key which described the rule to find. The key must
1591-
resolve to a number between 0 and 1, or the rule is ignored.<br>
1592-
</dd>
1593-
</dl>
1594-
</div>
1595-
</div><!-- parameters -->
1596-
<div class='return-value'>
1597-
<b>Return Value</b>
1598-
<div class='returnvalue'>
1599-
<dl>
1600-
<dt>
1601-
<code>CSSKeyframeRule</code>
1602-
</dt>
1603-
<dd>
1604-
The found rule.<br>
1605-
</dd>
1606-
</dl>
1607-
</div>
1568+
</div><!-- parameters -->
1569+
<div class='return-value'>
1570+
<b>No Return Value</b>
1571+
</div>
1572+
<div>
1573+
<b>No Exceptions</b>
1574+
</div>
1575+
</div><!-- ======================================================================================================= -->
1576+
</dd>
1577+
<dt>
1578+
<code class='method-name'><a id="DOM-CSSKeyframesRule-findRule" name='DOM-CSSKeyframesRule-findRule'>findRule</a></code>
1579+
</dt>
1580+
<dd>
1581+
<div class='method'>
1582+
The <code>findRule</code> method returns the rule with a key matching the passed key. If no such rule
1583+
exists, a null value is returned.
1584+
<div class='parameters'>
1585+
<b>Parameters</b>
1586+
<div class='paramtable'>
1587+
<dl>
1588+
<dt>
1589+
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1590+
</dt>
1591+
<dd>
1592+
The key which described the rule to find. The key must
1593+
resolve to a number between 0 and 1, or the rule is ignored.<br>
1594+
</dd>
1595+
</dl>
16081596
</div>
1609-
<div>
1610-
<b>No Exceptions</b>
1597+
</div><!-- parameters -->
1598+
<div class='return-value'>
1599+
<b>Return Value</b>
1600+
<div class='returnvalue'>
1601+
<dl>
1602+
<dt>
1603+
<code>CSSKeyframeRule</code>
1604+
</dt>
1605+
<dd>
1606+
The found rule.<br>
1607+
</dd>
1608+
</dl>
16111609
</div>
1612-
</div><!-- ======================================================================================================= -->
1613-
</dd>
1614-
</dl><!-- method -->
1615-
</dd>
1616-
</dt>
1610+
</div>
1611+
<div>
1612+
<b>No Exceptions</b>
1613+
</div>
1614+
</div><!-- ======================================================================================================= -->
1615+
</dd>
1616+
</dl><!-- method -->
1617+
</dd>
16171618
</dl>
16181619
</dd>
16191620
</dl>

css3-images/Overview.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ <h3 id=placement><span class=secno>1.1. </span> Module Interactions</h3>
342342
are expected. (See e.g. <a href="#CSS3BG"
343343
rel=biblioentry>[CSS3BG]<!--{{CSS3BG}}--></a>.)
344344

345+
<p>Of the properties defined in this module, only &lsquo;<a
346+
href="#image-resolution"><code
347+
class=property>image-resolution</code></a>&rsquo; applies to
348+
<code>::first-line</code> and <code>::first-letter</code>.
349+
345350
<h3 id=values><span class=secno>1.2. </span> Values</h3>
346351

347352
<p>This specification follows the <a
@@ -1982,7 +1987,7 @@ <h3 id=the-object-fit><span class=secno>5.5. </span> Sizing Objects: the
19821987

19831988
<tbody>
19841989
<tr>
1985-
<th>Value:
1990+
<th><a href="#values">Value:</a>
19861991

19871992
<td>fill | contain | cover | none | scale-down
19881993

@@ -2120,7 +2125,7 @@ <h3 id=the-object-position><span class=secno>5.6. </span> Positioning
21202125

21212126
<tbody>
21222127
<tr>
2123-
<th>Value:
2128+
<th><a href="#values">Value:</a>
21242129

21252130
<td>&lt;position>
21262131

@@ -2196,7 +2201,7 @@ <h3 id=the-image-resolution><span class=secno>6.1. </span> Overriding Image
21962201

21972202
<tbody>
21982203
<tr>
2199-
<th>Value:
2204+
<th><a href="#values">Value:</a>
22002205

22012206
<td>[from-image || &lt;resolution>] && snap?
22022207

@@ -2365,7 +2370,7 @@ <h3 id=the-image-orientation><span class=secno>6.2. </span> Orienting an
23652370

23662371
<tbody>
23672372
<tr>
2368-
<th>Value:
2373+
<th><a href="#values">Value:</a>
23692374

23702375
<td>&lt;angle>
23712376

css3-images/Overview.src.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ <h3 id="placement">
106106
in place of ''&lt;url>'' where 2D images are expected. (See e.g.
107107
[[CSS3BG]].)
108108

109+
<p>Of the properties defined in this module, only 'image-resolution'
110+
applies to <code>::first-line</code> and <code>::first-letter</code>.
111+
109112
<h3 id="values">
110113
Values</h3>
111114

@@ -1234,7 +1237,7 @@ <h3 id="the-object-fit">
12341237
<td><dfn>object-fit</dfn>
12351238
<tbody>
12361239
<tr>
1237-
<th>Value:
1240+
<th><a href="#values">Value:</a>
12381241
<td>fill | contain | cover | none | scale-down
12391242
<tr>
12401243
<th>Initial:
@@ -1337,7 +1340,7 @@ <h3 id="the-object-position">
13371340
<td><dfn>object-position</dfn>
13381341
<tbody>
13391342
<tr>
1340-
<th>Value:
1343+
<th><a href="#values">Value:</a>
13411344
<td>&lt;position>
13421345
<tr>
13431346
<th>Initial:
@@ -1388,7 +1391,7 @@ <h3 id="the-image-resolution">
13881391
<td><dfn>image-resolution</dfn>
13891392
<tbody>
13901393
<tr>
1391-
<th>Value:
1394+
<th><a href="#values">Value:</a>
13921395
<td>[from-image || &lt;resolution>] && snap?
13931396
<tr>
13941397
<th>Initial:
@@ -1510,7 +1513,7 @@ <h3 id="the-image-orientation">
15101513
<td><dfn>image-orientation</dfn>
15111514
<tbody>
15121515
<tr>
1513-
<th>Value:
1516+
<th><a href="#values">Value:</a>
15141517
<td>&lt;angle>
15151518
<tr>
15161519
<th>Initial:

css3-text/Overview.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
<h1>CSS Text Level 3</h1>
3434

35-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 27 March 2012</h2>
35+
<h2 class="no-num no-toc" id=longstatus-date>< B88B /span>Editor's Draft 29 March 2012</h2>
3636

3737
<dl>
3838
<dt>This version:
3939

4040
<dd><a href="http://dev.w3.org/csswg/css3-text/">$Date$ (CVS
4141
$Revision$)</a> <!--
42-
<dd><a href="http://www.w3.org/TR/2012/WD-css3-text-20120327/">http://www.w3.org/TR/2012/WD-css3-text-20120327/</a></dd>
42+
<dd><a href="http://www.w3.org/TR/2012/WD-css3-text-20120329/">http://www.w3.org/TR/2012/WD-css3-text-20120329/</a></dd>
4343
-->
4444

4545

@@ -1493,7 +1493,7 @@ <h3 id=hyphens><span class=secno>5.1. </span>Hyphenation Control: the
14931493
<td><dfn id=hyphens0>hyphens</dfn>
14941494

14951495
<tr>
1496-
<th>Value:
1496+
<th><a href="#values">Value:</a>
14971497

14981498
<td>none | manual | auto
14991499

css3-text/Overview.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ <h3 id="hyphens">Hyphenation Control: the 'hyphens' property</h3>
10131013
<td>Name:
10141014
<td><dfn>hyphens</dfn>
10151015
<tr>
1016-
<th>Value:
1016+
<th><a href="#values">Value:</a>
10171017
<td>none | manual | auto
10181018
<tr>
10191019
<th>Initial:

0 commit comments

Comments
 (0)