Skip to content

Commit e66221c

Browse files
committed
typo
1 parent 35cca30 commit e66221c

2 files changed

Lines changed: 50 additions & 73 deletions

File tree

cssom-view/Overview.html

Lines changed: 26 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ <h2 class="no-num no-toc" id="toc">Table of Contents</h2>
133133
<ol class="toc">
134134
<li><a href="#the-clientrectlist-interface"><span class="secno">10.1 </span>The <code title="">ClientRectList</code> Interface</a></li>
135135
<li><a href="#the-clientrect-interface"><span class="secno">10.2 </span>The <code title="">ClientRect</code> Interface</a></ol></li>
136-
<li><a class="no-num" href="#references">References</a></li>
137-
<li><a class="no-num" href="#references-0">References</a>
136+
<li><a class="no-num" href="#references">References</a>
138137
<ol class="toc">
139138
<li><a class="no-num" href="#normative-references">Normative references</a></ol></li>
140139
<li><a class="no-num" href="#acknowledgments">Acknowledgments</a></ol>
@@ -699,10 +698,10 @@ <h3 id="the-getclientrects-and-getboundingclientrect-methods"><span class="secno
699698
on.</li>
700699

701700
<li><p>If the <var>list</var> is empty return a <code><a href="#clientrect">ClientRect</a></code>
702-
object whose <code title="dom-clientrect-top"><a href="#dom-clientrect-top">top</a></code>,
703-
<code title="dom-clientrect-right"><a href="#dom-clientrect-right">right</a></code>,
704-
<code title="dom-clientrect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
705-
<code title="dom-clientrect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
701+
object whose <code title="dom-ClientRect-top"><a href="#dom-clientrect-top">top</a></code>,
702+
<code title="dom-ClientRect-right"><a href="#dom-clientrect-right">right</a></code>,
703+
<code title="dom-ClientRect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
704+
<code title="dom-ClientRect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
706705

707706
<li><p>Otherwise, return a <code><a href="#clientrect">ClientRect</a></code> object describing the
708707
smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1188,10 +1187,10 @@ <h2 id="extensions-to-the-range-interface"><span class="secno">8 </span>Extensio
11881187

11891188
<li><p>If <var>list</var> is empty return a
11901189
<code><a href="#clientrect">ClientRect</a></code> object whose
1191-
<code title="dom-clientrect-top"><a href="#dom-clientrect-top">top</a></code>,
1192-
<code title="dom-clientrect-right"><a href="#dom-clientrect-right">right</a></code>,
1193-
<code title="dom-clientrect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
1194-
<code title="dom-clientrect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
1190+
<code title="dom-ClientRect-top"><a href="#dom-clientrect-top">top</a></code>,
1191+
<code title="dom-ClientRect-right"><a href="#dom-clientrect-right">right</a></code>,
1192+
<code title="dom-ClientRect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
1193+
<code title="dom-ClientRect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
11951194

11961195
<li><p>Otherwise, return a <code><a href="#clientrect">ClientRect</a></code> object describing the
11971196
smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1318,64 +1317,59 @@ <h3 id="the-clientrect-interface"><span class="secno">10.2 </span>The <code titl
13181317
a <code><a href="#clientrect">ClientRect</a></code> object.</p>
13191318

13201319
<pre class="idl">interface <dfn id="clientrect">ClientRect</dfn> {
1321-
readonly attribute float <a href="#dom-clientrect-top" title="dom-clientrect-top">top</a>;
1322-
readonly attribute float <a href="#dom-clientrect-right" title="dom-clientrect-right">right</a>;
1323-
readonly attribute float <a href="#dom-clientrect-bottom" title="dom-clientrect-bottom">bottom</a>;
1324-
readonly attribute float <a href="#dom-clientrect-left" title="dom-clientrect-left">left</a>;
1325-
readonly attribute float <a href="#dom-clientrect-width" title="dom-clientrect-width">width</a>;
1326-
readonly attribute float <a href="#dom-clientrect-height" title="dom-clientrect-height">height</a>;
1320+
readonly attribute float <a href="#dom-clientrect-top" title="dom-ClientRect-top">top</a>;
1321+
readonly attribute float <a href="#dom-clientrect-right" title="dom-ClientRect-right">right</a>;
1322+
readonly attribute float <a href="#dom-clientrect-bottom" title="dom-ClientRect-bottom">bottom</a>;
1323+
readonly attribute float <a href="#dom-clientrect-left" title="dom-ClientRect-left">left</a>;
1324+
readonly attribute float <a href="#dom-clientrect-width" title="dom-ClientRect-width">width</a>;
1325+
readonly attribute float <a href="#dom-clientrect-height" title="dom-ClientRect-height">height</a>;
13271326
};</pre>
13281327

13291328
<p>The
1330-
<dfn id="dom-clientrect-top" title="dom-clientrect-top"><code>top</code></dfn>
1329+
<dfn id="dom-clientrect-top" title="dom-ClientRect-top"><code>top</code></dfn>
13311330
attribute must return the y-coordinate,
13321331
relative to the <a href="#viewport">viewport</a> origin, of the top of the rectangle
13331332
box.</p>
13341333

13351334
<p>The
1336-
<dfn id="dom-clientrect-right" title="dom-clientrect-right"><code>right</code></dfn>
1335+
<dfn id="dom-clientrect-right" title="dom-ClientRect-right"><code>right</code></dfn>
13371336
attribute must return the x-coordinate,
13381337
relative to the <a href="#viewport">viewport</a> origin, of the right of the
13391338
rectangle box.</p>
13401339

13411340
<p>The
1342-
<dfn id="dom-clientrect-bottom" title="dom-clientrect-bottom"><code>bottom</code></dfn>
1341+
<dfn id="dom-clientrect-bottom" title="dom-ClientRect-bottom"><code>bottom</code></dfn>
13431342
attribute must return the y-coordinate,
13441343
relative to the <a href="#viewport">viewport</a> origin, of the bottom of the
13451344
rectangle box.</p>
13461345

13471346
<p>The
1348-
<dfn id="dom-clientrect-left" title="dom-clientrect-left"><code>left</code></dfn>
1347+
<dfn id="dom-clientrect-left" title="dom-ClientRect-left"><code>left</code></dfn>
13491348
attribute must return the x-coordinate,
13501349
relative to the <a href="#viewport">viewport</a> origin, of the left of the rectangle
13511350
box.</p>
13521351

13531352
<p>The
1354-
<dfn id="dom-clientrect-width" title="dom-clientrect-width"><code>width</code></dfn>
1353+
<dfn id="dom-clientrect-width" title="dom-ClientRect-width"><code>width</code></dfn>
13551354
attribute must return the width of the
13561355
rectangle box.</p>
13571356

13581357
<p class="note">This is identical to
1359-
<code title="dom-clientrect-right"><a href="#dom-clientrect-right">right</a></code> minus
1360-
<code title="dom-clientrect-left"><a href="#dom-clientrect-left">left</a></code>.</p>
1358+
<code title="dom-ClientRect-right"><a href="#dom-clientrect-right">right</a></code> minus
1359+
<code title="dom-ClientRect-left"><a href="#dom-clientrect-left">left</a></code>.</p>
13611360

13621361
<p>The
1363-
<dfn id="dom-clientrect-height" title="dom-clientrect-height"><code>height</code></dfn>
1362+
<dfn id="dom-clientrect-height" title="dom-ClientRect-height"><code>height</code></dfn>
13641363
attribute must return the height of the
13651364
rectangle box.</p>
13661365

13671366
<p class="note">This is identical to
1368-
<code title="dom-clientrect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> minus
1369-
<code title="dom-clientrect-top"><a href="#dom-clientrect-top">top</a></code>.</p>
1367+
<code title="dom-ClientRect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> minus
1368+
<code title="dom-ClientRect-top"><a href="#dom-clientrect-top">top</a></code>.</p>
13701369

13711370

1372-
<h2 class="no-num" id="references">References</h2>
13731371

1374-
<p>All references are normative<!--, unless stated otherwise-->.</p>
1375-
1376-
1377-
1378-
<h2 class="no-num" id="references-0">References</h2>
1372+
<h2 class="no-num" id="references">References</h2>
13791373
<h3 class="no-num" id="normative-references">Normative references</h3>
13801374
<div id="anolis-references-normative"><dl><dt id="refsCSSOM">[CSSOM]
13811375
<dd><cite><a href="http://dev.w3.org/csswg/cssom/">CSSOM</a></cite>, A. van Kesteren. W3C.
@@ -1404,12 +1398,6 @@ <h3 class="no-num" id="normative-references">Normative references</h3>
14041398
<!--
14051399
<h3 class=no-num>Informative references</h3>
14061400
<div id=anolis-references-informative></div>
1407-
1408-
1409-
<dt id="ref-svg">[SVG]</dt>
1410-
<dd><cite><a href="http://www.w3.org/TR/SVG11/">Scalable Vector Graphics
1411-
(SVG) 1.1 Specification</a></cite>, J. Ferraiolo, &#34276;&#27810;
1412-
&#28147;, D. Jackson. W3C.</dd>
14131401
-->
14141402

14151403

cssom-view/Overview.src.html

Lines changed: 24 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -669,10 +669,10 @@ <h3>The <code title>getClientRects()</code> and
669669
on.</p></li>
670670

671671
<li><p>If the <var>list</var> is empty return a <code>ClientRect</code>
672-
object whose <code title="dom-clientrect-top">top</code>,
673-
<code title="dom-clientrect-right">right</code>,
674-
<code title="dom-clientrect-bottom">bottom</code> and
675-
<code title="dom-clientrect-left">left</code> members are zero.</p></li>
672+
object whose <code title="dom-ClientRect-top">top</code>,
673+
<code title="dom-ClientRect-right">right</code>,
674+
<code title="dom-ClientRect-bottom">bottom</code> and
675+
<code title="dom-ClientRect-left">left</code> members are zero.</p></li>
676676

677677
<li><p>Otherwise, return a <code>ClientRect</code> object describing the
678678
smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1158,10 +1158,10 @@ <h2 id="extensions-to-the-range-interface">Extensions to the <code title>Range</
11581158

11591159
<li><p>If <var>list</var> is empty return a
11601160
<code>ClientRect</code> object whose
1161-
<code title="dom-clientrect-top">top</code>,
1162-
<code title="dom-clientrect-right">right</code>,
1163-
<code title="dom-clientrect-bottom">bottom</code> and
1164-
<code title="dom-clientrect-left">left</code> members are zero.</p></li>
1161+
<code title="dom-ClientRect-top">top</code>,
1162+
<code title="dom-ClientRect-right">right</code>,
1163+
<code title="dom-ClientRect-bottom">bottom</code> and
1164+
<code title="dom-ClientRect-left">left</code> members are zero.</p></li>
11651165

11661166
<li><p>Otherwise, return a <code>ClientRect</code> object describing the
11671167
smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1288,60 +1288,55 @@ <h3 id="the-clientrect-interface">The <code title>ClientRect</code> Interface</h
12881288
a <code>ClientRect</code> object.</p>
12891289

12901290
<pre class="idl">interface <dfn>ClientRect</dfn> {
1291-
readonly attribute float <span title="dom-clientrect-top">top</span>;
1292-
readonly attribute float <span title="dom-clientrect-right">right</span>;
1293-
readonly attribute float <span title="dom-clientrect-bottom">bottom</span>;
1294-
readonly attribute float <span title="dom-clientrect-left">left</span>;
1295-
readonly attribute float <span title="dom-clientrect-width">width</span>;
1296-
readonly attribute float <span title="dom-clientrect-height">height</span>;
1291+
readonly attribute float <span title="dom-ClientRect-top">top</span>;
1292+
readonly attribute float <span title="dom-ClientRect-right">right</span>;
1293+
readonly attribute float <span title="dom-ClientRect-bottom">bottom</span>;
1294+
readonly attribute float <span title="dom-ClientRect-left">left</span>;
1295+
readonly attribute float <span title="dom-ClientRect-width">width</span>;
1296+
readonly attribute float <span title="dom-ClientRect-height">height</span>;
12971297
};</pre>
12981298

12991299
<p>The
1300-
<dfn id="dom-clientrect-top" title="dom-clientrect-top"><code>top</code></dfn>
1300+
<dfn title="dom-ClientRect-top"><code>top</code></dfn>
13011301
attribute must return the y-coordinate,
13021302
relative to the <span>viewport</span> origin, of the top of the rectangle
13031303
box.</p>
13041304

13051305
<p>The
1306-
<dfn id="dom-clientrect-right" title="dom-clientrect-right"><code>right</code></dfn>
1306+
<dfn title="dom-ClientRect-right"><code>right</code></dfn>
13071307
attribute must return the x-coordinate,
13081308
relative to the <span>viewport</span> origin, of the right of the
13091309
rectangle box.</p>
13101310

13111311
<p>The
1312-
<dfn id="dom-clientrect-bottom" title="dom-clientrect-bottom"><code>bottom</code></dfn>
1312+
<dfn title="dom-ClientRect-bottom"><code>bottom</code></dfn>
13131313
attribute must return the y-coordinate,
13141314
relative to the <span>viewport</span> origin, of the bottom of the
13151315
rectangle box.</p>
13161316

13171317
<p>The
1318-
<dfn id="dom-clientrect-left" title="dom-clientrect-left"><code>left</code></dfn>
1318+
<dfn title="dom-ClientRect-left"><code>left</code></dfn>
13191319
attribute must return the x-coordinate,
13201320
relative to the <span>viewport</span> origin, of the left of the rectangle
13211321
box.</p>
13221322

13231323
<p>The
1324-
<dfn id="dom-clientrect-width" title="dom-clientrect-width"><code>width</code></dfn>
1324+
<dfn title="dom-ClientRect-width"><code>width</code></dfn>
13251325
attribute must return the width of the
13261326
rectangle box.</p>
13271327

13281328
<p class="note">This is identical to
1329-
<code title="dom-clientrect-right">right</code> minus
1330-
<code title="dom-clientrect-left">left</code>.</p>
1329+
<code title="dom-ClientRect-right">right</code> minus
1330+
<code title="dom-ClientRect-left">left</code>.</p>
13311331

13321332
<p>The
1333-
<dfn id="dom-clientrect-height" title="dom-clientrect-height"><code>height</code></dfn>
1333+
<dfn title="dom-ClientRect-height"><code>height</code></dfn>
13341334
attribute must return the height of the
13351335
rectangle box.</p>
13361336

13371337
<p class="note">This is identical to
1338-
<code title="dom-clientrect-bottom">bottom</code> minus
1339-
<code title="dom-clientrect-top">top</code>.</p>
1340-
1341-
1342-
<h2 class="no-num">References</h2>
1343-
1344-
<p>All references are normative<!--, unless stated otherwise-->.</p>
1338+
<code title="dom-ClientRect-bottom">bottom</code> minus
1339+
<code title="dom-ClientRect-top">top</code>.</p>
13451340

13461341

13471342

@@ -1353,12 +1348,6 @@ <h3 class=no-num>Normative references</h3>
13531348
<!--
13541349
<h3 class=no-num>Informative references</h3>
13551350
<div id=anolis-references-informative></div>
1356-
1357-
1358-
<dt id="ref-svg">[SVG]</dt>
1359-
<dd><cite><a href="http://www.w3.org/TR/SVG11/">Scalable Vector Graphics
1360-
(SVG) 1.1 Specification</a></cite>, J. Ferraiolo, &#34276;&#27810;
1361-
&#28147;, D. Jackson. W3C.</dd>
13621351
-->
13631352

13641353

0 commit comments

Comments
 (0)