csswg/cssom-view Overview.html,1.102,1.103 Overview.src.html,1.103,1.104

Update of /sources/public/csswg/cssom-view
In directory hutz:/tmp/cvs-serv29178

Modified Files:
	Overview.html Overview.src.html 
Log Message:
typo

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/cssom-view/Overview.html,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -d -r1.102 -r1.103
--- Overview.html	6 Jul 2011 13:17:48 -0000	1.102
+++ Overview.html	6 Jul 2011 13:21:01 -0000	1.103
@@ -133,8 +133,7 @@
   <ol class="toc">
    <li><a href="#the-clientrectlist-interface"><span class="secno">10.1 </span>The <code title="">ClientRectList</code> Interface</a></li>
    <li><a href="#the-clientrect-interface"><span class="secno">10.2 </span>The <code title="">ClientRect</code> Interface</a></ol></li>
- <li><a class="no-num" href="#references">References</a></li>
- <li><a class="no-num" href="#references-0">References</a>
+ <li><a class="no-num" href="#references">References</a>
   <ol class="toc">
    <li><a class="no-num" href="#normative-references">Normative references</a></ol></li>
  <li><a class="no-num" href="#acknowledgments">Acknowledgments</a></ol>
@@ -699,10 +698,10 @@
    on.</li>
 
    <li><p>If the <var>list</var> is empty return a <code><a href="#clientrect">ClientRect</a></code>
-   object whose <code title="dom-clientrect-top"><a href="#dom-clientrect-top">top</a></code>,
-   <code title="dom-clientrect-right"><a href="#dom-clientrect-right">right</a></code>,
-   <code title="dom-clientrect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
-   <code title="dom-clientrect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
+   object whose <code title="dom-ClientRect-top"><a href="#dom-clientrect-top">top</a></code>,
+   <code title="dom-ClientRect-right"><a href="#dom-clientrect-right">right</a></code>,
+   <code title="dom-ClientRect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
+   <code title="dom-ClientRect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
 
    <li><p>Otherwise, return a <code><a href="#clientrect">ClientRect</a></code> object describing the
    smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1188,10 +1187,10 @@
 
    <li><p>If <var>list</var> is empty return a
    <code><a href="#clientrect">ClientRect</a></code> object whose
-   <code title="dom-clientrect-top"><a href="#dom-clientrect-top">top</a></code>,
-   <code title="dom-clientrect-right"><a href="#dom-clientrect-right">right</a></code>,
-   <code title="dom-clientrect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
-   <code title="dom-clientrect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
+   <code title="dom-ClientRect-top"><a href="#dom-clientrect-top">top</a></code>,
+   <code title="dom-ClientRect-right"><a href="#dom-clientrect-right">right</a></code>,
+   <code title="dom-ClientRect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> and
+   <code title="dom-ClientRect-left"><a href="#dom-clientrect-left">left</a></code> members are zero.</li>
 
    <li><p>Otherwise, return a <code><a href="#clientrect">ClientRect</a></code> object describing the
    smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1318,64 +1317,59 @@
   a <code><a href="#clientrect">ClientRect</a></code> object.</p>
 
   <pre class="idl">interface <dfn id="clientrect">ClientRect</dfn> {
-  readonly attribute float <a href="#dom-clientrect-top" title="dom-clientrect-top">top</a>;
-  readonly attribute float <a href="#dom-clientrect-right" title="dom-clientrect-right">right</a>;
-  readonly attribute float <a href="#dom-clientrect-bottom" title="dom-clientrect-bottom">bottom</a>;
-  readonly attribute float <a href="#dom-clientrect-left" title="dom-clientrect-left">left</a>;
-  readonly attribute float <a href="#dom-clientrect-width" title="dom-clientrect-width">width</a>;
-  readonly attribute float <a href="#dom-clientrect-height" title="dom-clientrect-height">height</a>;
+  readonly attribute float <a href="#dom-clientrect-top" title="dom-ClientRect-top">top</a>;
+  readonly attribute float <a href="#dom-clientrect-right" title="dom-ClientRect-right">right</a>;
+  readonly attribute float <a href="#dom-clientrect-bottom" title="dom-ClientRect-bottom">bottom</a>;
+  readonly attribute float <a href="#dom-clientrect-left" title="dom-ClientRect-left">left</a>;
+  readonly attribute float <a href="#dom-clientrect-width" title="dom-ClientRect-width">width</a>;
+  readonly attribute float <a href="#dom-clientrect-height" title="dom-ClientRect-height">height</a>;
 };</pre>
 
   <p>The
-  <dfn id="dom-clientrect-top" title="dom-clientrect-top"><code>top</code></dfn>
+  <dfn id="dom-clientrect-top" title="dom-ClientRect-top"><code>top</code></dfn>
   attribute must return the y-coordinate,
   relative to the <a href="#viewport">viewport</a> origin, of the top of the rectangle
   box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-right" title="dom-clientrect-right"><code>right</code></dfn>
+  <dfn id="dom-clientrect-right" title="dom-ClientRect-right"><code>right</code></dfn>
   attribute must return the x-coordinate,
   relative to the <a href="#viewport">viewport</a> origin, of the right of the
   rectangle box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-bottom" title="dom-clientrect-bottom"><code>bottom</code></dfn>
+  <dfn id="dom-clientrect-bottom" title="dom-ClientRect-bottom"><code>bottom</code></dfn>
   attribute must return the y-coordinate,
   relative to the <a href="#viewport">viewport</a> origin, of the bottom of the
   rectangle box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-left" title="dom-clientrect-left"><code>left</code></dfn>
+  <dfn id="dom-clientrect-left" title="dom-ClientRect-left"><code>left</code></dfn>
   attribute must return the x-coordinate,
   relative to the <a href="#viewport">viewport</a> origin, of the left of the rectangle
   box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-width" title="dom-clientrect-width"><code>width</code></dfn>
+  <dfn id="dom-clientrect-width" title="dom-ClientRect-width"><code>width</code></dfn>
   attribute must return the width of the
   rectangle box.</p>
 
   <p class="note">This is identical to
-  <code title="dom-clientrect-right"><a href="#dom-clientrect-right">right</a></code> minus
-  <code title="dom-clientrect-left"><a href="#dom-clientrect-left">left</a></code>.</p>
+  <code title="dom-ClientRect-right"><a href="#dom-clientrect-right">right</a></code> minus
+  <code title="dom-ClientRect-left"><a href="#dom-clientrect-left">left</a></code>.</p>
 
   <p>The
-  <dfn id="dom-clientrect-height" title="dom-clientrect-height"><code>height</code></dfn>
+  <dfn id="dom-clientrect-height" title="dom-ClientRect-height"><code>height</code></dfn>
   attribute must return the height of the
   rectangle box.</p>
 
   <p class="note">This is identical to
-  <code title="dom-clientrect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> minus
-  <code title="dom-clientrect-top"><a href="#dom-clientrect-top">top</a></code>.</p>
-
-
-  <h2 class="no-num" id="references">References</h2>
-
-  <p>All references are normative<!--, unless stated otherwise-->.</p>
+  <code title="dom-ClientRect-bottom"><a href="#dom-clientrect-bottom">bottom</a></code> minus
+  <code title="dom-ClientRect-top"><a href="#dom-clientrect-top">top</a></code>.</p>
 
 
 
-<h2 class="no-num" id="references-0">References</h2>
+<h2 class="no-num" id="references">References</h2>
 <h3 class="no-num" id="normative-references">Normative references</h3>
 <div id="anolis-references-normative"><dl><dt id="refsCSSOM">[CSSOM]
 <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>Informative references</h3>
 <div id=anolis-references-informative></div>
-
-
-   <dt id="ref-svg">[SVG]</dt>
-   <dd><cite><a href="http://www.w3.org/TR/SVG11/">Scalable Vector Graphics
-   (SVG) 1.1 Specification</a></cite>, J. Ferraiolo, &#34276;&#27810;
-   &#28147;, D. Jackson. W3C.</dd>
 -->
 
 

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/cssom-view/Overview.src.html,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -d -r1.103 -r1.104
--- Overview.src.html	6 Jul 2011 13:17:48 -0000	1.103
+++ Overview.src.html	6 Jul 2011 13:21:01 -0000	1.104
@@ -669,10 +669,10 @@
    on.</p></li>
 
    <li><p>If the <var>list</var> is empty return a <code>ClientRect</code>
-   object whose <code title="dom-clientrect-top">top</code>,
-   <code title="dom-clientrect-right">right</code>,
-   <code title="dom-clientrect-bottom">bottom</code> and
-   <code title="dom-clientrect-left">left</code> members are zero.</p></li>
+   object whose <code title="dom-ClientRect-top">top</code>,
+   <code title="dom-ClientRect-right">right</code>,
+   <code title="dom-ClientRect-bottom">bottom</code> and
+   <code title="dom-ClientRect-left">left</code> members are zero.</p></li>
 
    <li><p>Otherwise, return a <code>ClientRect</code> object describing the
    smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1158,10 +1158,10 @@
 
    <li><p>If <var>list</var> is empty return a
    <code>ClientRect</code> object whose
-   <code title="dom-clientrect-top">top</code>,
-   <code title="dom-clientrect-right">right</code>,
-   <code title="dom-clientrect-bottom">bottom</code> and
-   <code title="dom-clientrect-left">left</code> members are zero.</p></li>
+   <code title="dom-ClientRect-top">top</code>,
+   <code title="dom-ClientRect-right">right</code>,
+   <code title="dom-ClientRect-bottom">bottom</code> and
+   <code title="dom-ClientRect-left">left</code> members are zero.</p></li>
 
    <li><p>Otherwise, return a <code>ClientRect</code> object describing the
    smallest rectangle that includes the first rectangle in <var>list</var>
@@ -1288,60 +1288,55 @@
   a <code>ClientRect</code> object.</p>
 
   <pre class="idl">interface <dfn>ClientRect</dfn> {
-  readonly attribute float <span title="dom-clientrect-top">top</span>;
-  readonly attribute float <span title="dom-clientrect-right">right</span>;
-  readonly attribute float <span title="dom-clientrect-bottom">bottom</span>;
-  readonly attribute float <span title="dom-clientrect-left">left</span>;
-  readonly attribute float <span title="dom-clientrect-width">width</span>;
-  readonly attribute float <span title="dom-clientrect-height">height</span>;
+  readonly attribute float <span title="dom-ClientRect-top">top</span>;
+  readonly attribute float <span title="dom-ClientRect-right">right</span>;
+  readonly attribute float <span title="dom-ClientRect-bottom">bottom</span>;
+  readonly attribute float <span title="dom-ClientRect-left">left</span>;
+  readonly attribute float <span title="dom-ClientRect-width">width</span>;
+  readonly attribute float <span title="dom-ClientRect-height">height</span>;
 };</pre>
 
   <p>The
-  <dfn id="dom-clientrect-top" title="dom-clientrect-top"><code>top</code></dfn>
+  <dfn title="dom-ClientRect-top"><code>top</code></dfn>
   attribute must return the y-coordinate,
   relative to the <span>viewport</span> origin, of the top of the rectangle
   box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-right" title="dom-clientrect-right"><code>right</code></dfn>
+  <dfn title="dom-ClientRect-right"><code>right</code></dfn>
   attribute must return the x-coordinate,
   relative to the <span>viewport</span> origin, of the right of the
   rectangle box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-bottom" title="dom-clientrect-bottom"><code>bottom</code></dfn>
+  <dfn title="dom-ClientRect-bottom"><code>bottom</code></dfn>
   attribute must return the y-coordinate,
   relative to the <span>viewport</span> origin, of the bottom of the
   rectangle box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-left" title="dom-clientrect-left"><code>left</code></dfn>
+  <dfn title="dom-ClientRect-left"><code>left</code></dfn>
   attribute must return the x-coordinate,
   relative to the <span>viewport</span> origin, of the left of the rectangle
   box.</p>
 
   <p>The
-  <dfn id="dom-clientrect-width" title="dom-clientrect-width"><code>width</code></dfn>
+  <dfn title="dom-ClientRect-width"><code>width</code></dfn>
   attribute must return the width of the
   rectangle box.</p>
 
   <p class="note">This is identical to
-  <code title="dom-clientrect-right">right</code> minus
-  <code title="dom-clientrect-left">left</code>.</p>
+  <code title="dom-ClientRect-right">right</code> minus
+  <code title="dom-ClientRect-left">left</code>.</p>
 
   <p>The
-  <dfn id="dom-clientrect-height" title="dom-clientrect-height"><code>height</code></dfn>
+  <dfn title="dom-ClientRect-height"><code>height</code></dfn>
   attribute must return the height of the
   rectangle box.</p>
 
   <p class="note">This is identical to
-  <code title="dom-clientrect-bottom">bottom</code> minus
-  <code title="dom-clientrect-top">top</code>.</p>
-
-
-  <h2 class="no-num">References</h2>
-
-  <p>All references are normative<!--, unless stated otherwise-->.</p>
+  <code title="dom-ClientRect-bottom">bottom</code> minus
+  <code title="dom-ClientRect-top">top</code>.</p>
 
 
 
@@ -1353,12 +1348,6 @@
 <!--
 <h3 class=no-num>Informative references</h3>
 <div id=anolis-references-informative></div>
-
-
-   <dt id="ref-svg">[SVG]</dt>
-   <dd><cite><a href="http://www.w3.org/TR/SVG11/">Scalable Vector Graphics
-   (SVG) 1.1 Specification</a></cite>, J. Ferraiolo, &#34276;&#27810;
-   &#28147;, D. Jackson. W3C.</dd>
 -->
 
 

Received on Wednesday, 6 July 2011 13:21:05 UTC