Skip to content

Commit ff6b6f0

Browse files
committed
fix typos
1 parent b02b68c commit ff6b6f0

2 files changed

Lines changed: 15 additions & 14 deletions

File tree

cssom/Overview.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<div class=head>
2626
<h1 id=cssom>CSSOM</h1>
2727

28-
<h2 class="no-num no-toc" id="">Editor's Draft 3 December 2009</h2>
28+
<h2 class="no-num no-toc" id="">Editor's Draft 31 January 2010</h2>
2929

3030
<dl>
3131
<dt>This Version:
3232

3333
<dd><a
34-
href="http://www.w3.org/TR/2009/ED-cssom-20091203/">http://www.w3.org/TR/2009/ED-cssom-20091203/</a>
34+
href="http://www.w3.org/TR/2010/ED-cssom-20100131/">http://www.w3.org/TR/2010/ED-cssom-20100131/</a>
3535

3636
<dt>Latest Version:
3737

@@ -1090,7 +1090,7 @@ <h3 id=style-sheet-collections><span class=secno>6.2. </span>Style Sheet
10901090
href="#style-sheet-set">style sheet set</a> whose <a
10911091
href="#style-sheet-set-name">style sheet set name</a> is a
10921092
case-sensitive match for <var title="">name</var> to false and set it to
1093-
false for all other <a href="#style-sheet" title="style sheet">style
1093+
true for all other <a href="#style-sheet" title="style sheet">style
10941094
sheets</a> in a <a href="#style-sheet-set">style sheet set</a>.
10951095
</ol>
10961096

@@ -1198,7 +1198,7 @@ <h4 id=the-documentstyle-interface><span class=secno>6.2.3. </span>The
11981198
readonly attribute DOMString? <a href="#documentstyle-lastStyleSheetSet">lastStyleSheetSet</a>;
11991199
readonly attribute DOMString? <a href="#documentstyle-preferredStyleSheetSet">preferredStyleSheetSet</a>;
12001200
readonly attribute DOMStringList <a href="#documentstyle-styleSheetSets">styleSheetSets</a>;
1201-
void <a href="#documentstyle-enablestylesheetsforset" title=documentstyle-enablestylesheetsforset>enableStylesheetsForSet</a>(DOMString? <var>name</var>);
1201+
void <a href="#documentstyle-enablestylesheetsforset" title=documentstyle-enablestylesheetsforset>enableStyleSheetsForSet</a>(DOMString? <var>name</var>);
12021202
};
12031203

12041204
<span>Document</span> implements <a href="#documentstyle">DocumentStyle</a>;</pre>
@@ -1290,7 +1290,7 @@ <h4 id=the-documentstyle-interface><span class=secno>6.2.3. </span>The
12901290
style sheets</a>.
12911291

12921292
<p>The <dfn id=documentstyle-enablestylesheetsforset
1293-
title=documentstyle-enablestylesheetsforset><code>enableStylesheetsForSet(<var
1293+
title=documentstyle-enablestylesheetsforset><code>enableStyleSheetsForSet(<var
12941294
title="">name</var>)</code></dfn> method <em class=ct>must</em>, when
12951295
invoked, run these steps:
12961296

@@ -1405,7 +1405,7 @@ <h4 id=examples><span class=secno>6.2.5. </span>Examples</h4>
14051405
<code>&lt;link&gt;</code> element, the <code><a
14061406
href="#documentstyle-preferredStyleSheetSet">preferredStyleSheetSet</a></code>
14071407
is set and the <code title=documentstyle-enablestylesheetsforset><a
1408-
href="#documentstyle-enablestylesheetsforset">enableStylesheetsForSet()</a></code>
1408+
href="#documentstyle-enablestylesheetsforset">enableStyleSheetsForSet()</a></code>
14091409
method is called (since <code><a
14101410
href="#documentstyle-selectedStyleSheetSet">selectedStyleSheetSet</a></code>
14111411
was never set explicitly, leaving <code><a
@@ -4232,8 +4232,8 @@ <h2 class=no-num id=acknowledgements>Acknowledgements</h2>
42324232

42334233
<p>The editor would like to thank Alexey Feldgendler, Björn Höhrmann,
42344234
David Baron, Hallvord R. M. Steen, Ian Hickson, Lachlan Hunt, Morten
4235-
Stenshorne, Robert O'Callahan, Sjoerd Visscher, Simon Pieters, and Tarquin
4236-
Wilton-Jones for contributing to this specification.
4235+
Stenshorne, Robert O'Callahan, Sjoerd Visscher, Simon Pieters, Sylvain
4236+
Galineau, and Tarquin Wilton-Jones for contributing to this specification.
42374237

42384238
<p>Even more thanks to Ian Hickson for writing up the the initial version
42394239
of the alternative style sheets API and canonicalization rules for CSS

cssom/Overview.src.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ <h3>Style Sheet Collections</h3>
827827
<li><p>Set the <span>style sheet disabled flag</span> for each
828828
<span>style sheet</span> in a <span>style sheet set</span> whose
829829
<span>style sheet set name</span> is a case-sensitive match for
830-
<var title="">name</var> to false and set it to false for all other
830+
<var title="">name</var> to false and set it to true for all other
831831
<span title="style sheet">style sheets</span> in a
832832
<span>style sheet set</span>.</p></li>
833833
</ol>
@@ -931,7 +931,7 @@ <h4>The <code title="">DocumentStyle</code> Interface</h4>
931931
readonly attribute DOMString? <span>lastStyleSheetSet</span>;
932932
readonly attribute DOMString? <span>preferredStyleSheetSet</span>;
933933
readonly attribute DOMStringList <span>styleSheetSets</span>;
934-
void <span title="documentstyle-enablestylesheetsforset">enableStylesheetsForSet</span>(DOMString? <var>name</var>);
934+
void <span title="documentstyle-enablestylesheetsforset">enableStyleSheetsForSet</span>(DOMString? <var>name</var>);
935935
};
936936

937937
<span>Document</span> implements <span>DocumentStyle</span>;</pre>
@@ -1012,7 +1012,7 @@ <h4>The <code title="">DocumentStyle</code> Interface</h4>
10121012
<span>document style sheets</span>.</p>
10131013

10141014
<p>The
1015-
<dfn id="documentstyle-enablestylesheetsforset" title="documentstyle-enablestylesheetsforset"><code>enableStylesheetsForSet(<var title="">name</var>)</code></dfn>
1015+
<dfn id="documentstyle-enablestylesheetsforset" title="documentstyle-enablestylesheetsforset"><code>enableStyleSheetsForSet(<var title="">name</var>)</code></dfn>
10161016
method <em class="ct">must</em>, when invoked, run these steps:</p>
10171017

10181018
<ol>
@@ -1111,7 +1111,7 @@ <h4>Examples</h4>
11111111
sets style sheet "b" to be enabled, because upon parsing the
11121112
following <code>&lt;link&gt;</code> element, the
11131113
<code>preferredStyleSheetSet</code> is set and the
1114-
<code title="documentstyle-enablestylesheetsforset">enableStylesheetsForSet()</code>
1114+
<code title="documentstyle-enablestylesheetsforset">enableStyleSheetsForSet()</code>
11151115
method is called (since <code>selectedStyleSheetSet</code> was never set
11161116
explicitly, leaving <code>lastStyleSheetSet</code> at <code>null</code>
11171117
throughout), which changes which style sheets are enabled and which are
@@ -3117,7 +3117,7 @@ <h3 class="no-num"><dfn title="http-default-style"><code>Default-Style</code></d
31173117
<p>This section describes a header field for registration in the Permanent
31183118
Message Header Field Registry.
31193119
<!--<a href="XXX">[RFC3864]</a>--></p>
3120-
3120+
31213121
<dl>
31223122
<dt>Header field name</dt>
31233123
<dd>Default-Style</dd>
@@ -3155,7 +3155,8 @@ <h2 class="no-num" id="acknowledgements">Acknowledgements</h2>
31553155
Morten Stenshorne,
31563156
Robert O'Callahan,
31573157
Sjoerd Visscher,
3158-
Simon Pieters, and
3158+
Simon Pieters,
3159+
Sylvain Galineau, and
31593160
Tarquin Wilton-Jones
31603161

31613162
for contributing to this specification.</p>

0 commit comments

Comments
 (0)