Skip to content

Commit 2fc911e

Browse files
committed
Fix validation errors
1 parent ec7084d commit 2fc911e

4 files changed

Lines changed: 37 additions & 40 deletions

File tree

css-text-decor-3/Overview.html

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
<!DOCTYPE html>
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
22

33
<html lang=en>
4-
<head>
4+
<head profile="http://dublincore.org/documents/2008/08/04/dc-html/ ">
55
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
66
<title>CSS Text Decoration Module Level 3 (CSS3 Text Decoration)</title>
7-
<!--
8-
<link href="http://purl.org/dc/terms/" rel="schema.dcterms">
9-
<link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright" rel="dcterms.rights">
10-
-->
117

8+
<link href="http://purl.org/dc/terms/" rel=schema.dcterms>
9+
<link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
10+
rel=dcterms.rights>
1211
<meta content="CSS Text Decoration Module Level 3 (CSS3 Text Decoration)"
1312
name=dcterms.title>
1413
<meta content=text name=dcterms.type>
@@ -56,7 +55,7 @@ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 9 November
5655
<dt>Previous version:
5756

5857
<dd><a
59-
href="http://www.w3.org/TR/2012/WD-css3-text-20120119/">http://www.w3.org/TR/2012/WD-css3-text-20120119/</a>
58+
href="http://www.w3.org/TR/2012/WD-css3-text-20120814/">http://www.w3.org/TR/2012/WD-css3-text-20120814/</a>
6059

6160
<dt>Issues List:
6261

@@ -980,9 +979,9 @@ <h3 id=line-position><span class=secno>2.7. </span> Determining the
980979
<dt><a href="#alphabetic"><i>alphabetic</i></a> underlines
981980

982981
<dd> Position the line to an average of the ideal underlines of the
983-
decorated fragments, ignoring any fragments with non-initial ‘<code
984-
class=property>vertical-align</code>, but below the lowest alphabetic
985-
baseline considered.
982+
decorated fragments, assigning any fragment with non-initial ‘<code
983+
class=property>vertical-align</code> the ideal position of its parent,
984+
but below the lowest alphabetic baseline considered.
986985

987986
<dt>non-alphabetic underlines (and <a
988987
href="#under"><i>under</i></a>-positioned overlines)
@@ -994,15 +993,14 @@ <h3 id=line-position><span class=secno>2.7. </span> Determining the
994993

995994
<dd> For each set of decorated fragments with the same ‘<code
996995
class=property>font-size</code>’, compute an ideal position averaged
997-
from their direct contents and font metrics, ignoring any fragments with
998-
non-initial ‘<code class=property>vertical-align</code>’ and
999-
assigning them the ideal position of their parent. Position the portion
1000-
of the line across each decorated fragment at the fragment's ideal
1001-
position. (Essentially, this performs the same sort of averaging as for
1002-
alphabetic underlines, but recomputes the position when drawing across a
1003-
descendant with a different computed ‘<code
1004-
class=property>font-size</code>’.) <span class=issue>Need an example
1005-
here</span>
996+
from their direct contents and font metrics, assigning any fragment with
997+
non-initial ‘<code class=property>vertical-align</code>’the ideal
998+
position of its parent. Position the portion of the line across each
999+
decorated fragment at the fragment's ideal position. (Essentially, this
1000+
performs the same sort of averaging as for alphabetic underlines, but
1001+
recomputes the position when drawing across a descendant with a different
1002+
computed ‘<code class=property>font-size</code>’.) <span
1003+
class=issue>Need an example here</span>
10061004
</dl>
10071005

10081006
<p> CSS does not define the thickness of line decorations. In determining

css-text-decor-3/Overview.src.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
22
<html lang="en">
33
<head>
44
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
@@ -33,7 +33,7 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
3333

3434
<dt>Previous version:</dt>
3535
<dd><a
36-
href="http://www.w3.org/TR/2012/WD-css3-text-20120119/">http://www.w3.org/TR/2012/WD-css3-text-20120119/</a>
36+
href="http://www.w3.org/TR/2012/WD-css3-text-20120814/">http://www.w3.org/TR/2012/WD-css3-text-20120814/</a>
3737

3838
<dt>Issues List:</dt>
3939
<dd><a href="http://www.w3.org/Style/CSS/Tracker/products/10">http://www.w3.org/Style/CSS/Tracker/products/10</a>
@@ -648,7 +648,7 @@ <h3 id="line-position">
648648
<dt><i>alphabetic</i> underlines
649649
<dd>
650650
Position the line to an average of the ideal underlines of the decorated fragments,
651-
ignoring any fragments with non-initial 'vertical-align',
651+
assigning any fragment with non-initial 'vertical-align' the ideal position of its parent,
652652
but below the lowest alphabetic baseline considered.
653653

654654
<dt>non-alphabetic underlines (and <i>under</i>-positioned overlines)
@@ -659,7 +659,7 @@ <h3 id="line-position">
659659
<dd>
660660
For each set of decorated fragments with the same 'font-size',
661661
compute an ideal position averaged from their direct contents and font metrics,
662-
ignoring any fragments with non-initial 'vertical-align' and assigning them the ideal position of their parent.
662+
assigning any fragment with non-initial 'vertical-align'the ideal position of its parent.
663663
Position the portion of the line across each decorated fragment at the fragment's ideal position.
664664
(Essentially, this performs the same sort of averaging as for alphabetic underlines,
665665
but recomputes the position when drawing across a descendant with a different computed 'font-size'.)

css3-text/Overview.html

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
1-
<!DOCTYPE html>
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
22

33
<html lang=en>
4-
<head>
4+
<head profile="http://dublincore.org/documents/2008/08/04/dc-html/ ">
55
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
66
<title>CSS Text Module Level 3 (CSS3 Text)</title>
7-
<!--
8-
<link href="http://purl.org/dc/terms/" rel="schema.dcterms">
9-
<link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright" rel="dcterms.rights">
10-
-->
117

8+
<link href="http://purl.org/dc/terms/" rel=schema.dcterms>
9+
<link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
10+
rel=dcterms.rights>
1211
<meta content="CSS Text Module Level 3 (CSS3 Text)" name=dcterms.title>
1312
<meta content=text name=dcterms.type>
1413
<meta content=2012-11-09 name=dcterms.issued>
1514
<meta content="Elika J. Etemad" name=dcterms.creator>
1615
<meta content="Koji Ishii" name=dcterms.creator>
1716
<meta content=W3C name=dcterms.publisher>
18-
<meta content="http://www.w3.org/TR/2012/WD-css3-text-20121109/"
17+
<meta content="http://www.w3.org/TR/2012/ED-css3-text-20121109/"
1918
name=dcterms.identifier>
2019
<link href="#contents" rel=contents>
2120
<link href="#index" rel=index>
2221
<link href="../default.css" rel=stylesheet type="text/css">
23-
<link href="http://www.w3.org/StyleSheets/TR/W3C-WD.css" rel=stylesheet
22+
<link href="http://www.w3.org/StyleSheets/TR/W3C-ED.css" rel=stylesheet
2423
type="text/css">
2524
<style type="text/css">
2625
.egbidiwsaA,.egbidiwsbB,.egbidiwsaB,.egbidiwsbC
@@ -37,7 +36,7 @@
3736
margin :auto;
3837
}
3938
</style>
40-
<link href="http://www.w3.org/StyleSheets/TR/W3C-WD.css" rel=stylesheet
39+
<link href="http://www.w3.org/StyleSheets/TR/W3C-ED.css" rel=stylesheet
4140
type="text/css">
4241

4342
<body>
@@ -47,17 +46,17 @@
4746

4847
<h1>CSS Text Module Level 3</h1>
4948

50-
<h2 class="no-num no-toc" id=longstatus-date>W3C Working Draft 9 November
49+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 9 November
5150
2012</h2>
5251

5352
<dl>
5453
<dt>This version:</dt>
5554
<!--
56-
<dd><a href="http://dev.w3.org/csswg/css3-text/">$Date$ (CVS $Revision$)</a>
55+
<dd><a href="http://www.w3.org/TR/2012/WD-css3-text-20121109/">http://www.w3.org/TR/2012/WD-css3-text-20121109/</a></dd>
5756
-->
5857

5958
<dd><a
60-
href="http://www.w3.org/TR/2012/WD-css3-text-20121109/">http://www.w3.org/TR/2012/WD-css3-text-20121109/</a>
59+
href="http://dev.w3.org/csswg/css3-text/">http://dev.w3.org/csswg/css3-text/</a>
6160

6261
<dt>Latest version:
6362

@@ -72,7 +71,7 @@ <h2 class="no-num no-toc" id=longstatus-date>W3C Working Draft 9 November
7271
<dt>Previous version:
7372

7473
<dd><a
75-
href="http://www.w3.org/TR/2012/WD-css3-text-20120119/">http://www.w3.org/TR/2012/WD-css3-text-20120119/</a>
74+
href="http://www.w3.org/TR/2012/WD-css3-text-20120814/">http://www.w3.org/TR/2012/WD-css3-text-20120814/</a>
7675

7776
<dt>Issues List:
7877

css3-text/Overview.src.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
22
<html lang="en">
33
<head>
44
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
@@ -41,17 +41,17 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
4141
<dl>
4242
<dt>This version:</dt>
4343
<!--
44-
<dd><a href="http://dev.w3.org/csswg/css3-text/">$Date$ (CVS $Revision$)</a>
45-
-->
4644
<dd><a href="http://www.w3.org/TR/[YEAR]/WD-css3-text-[CDATE]/">http://www.w3.org/TR/[YEAR]/WD-css3-text-[CDATE]/</a></dd>
45+
-->
46+
<dd><a href="http://dev.w3.org/csswg/css3-text/">http://dev.w3.org/csswg/css3-text/</a>
4747

4848
<dt>Latest version:</dt>
4949
<dd><a href="http://www.w3.org/TR/css3-text/">http://www.w3.org/TR/css3-text/</a></dd>
5050
<dt>Latest editor's draft:</dt>
5151
<dd><a href="http://dev.w3.org/csswg/css3-text/">http://dev.w3.org/csswg/css3-text/</a></dd>
5252
<dt>Previous version:</dt>
5353
<dd><a
54-
href="http://www.w3.org/TR/2012/WD-css3-text-20120119/">http://www.w3.org/TR/2012/WD-css3-text-20120119/</a>
54+
href="http://www.w3.org/TR/2012/WD-css3-text-20120814/">http://www.w3.org/TR/2012/WD-css3-text-20120814/</a>
5555

5656
<dt>Issues List:</dt>
5757
<dd><a href="http://www.w3.org/Style/CSS/Tracker/products/10">http://www.w3.org/Style/CSS/Tracker/products/10</a>

0 commit comments

Comments
 (0)