Skip to content

Commit 16efbbd

Browse files
author
Simon Pieters
committed
1 parent acb819d commit 16efbbd

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

cssom-view/Overview.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<h1>CSSOM View Module</h1>
1818

19-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 18 September 2013</h2>
19+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 19 September 2013</h2>
2020

2121
<dl>
2222

@@ -83,7 +83,7 @@ <h2 class="no-num no-toc" id="sotd">Status of This Document</h2>
8383
can be found in the <a href="http://www.w3.org/TR/">W3C technical reports
8484
index at http://www.w3.org/TR/.</a></em>
8585

86-
<p>This is the 18 September 2013 Editor's Draft of CSSOM View. Please send
86+
<p>This is the 19 September 2013 Editor's Draft of CSSOM View. Please send
8787
comments to
8888
<a href="mailto:www-style@w3.org?subject=%5Bcssom-view%5D%20">www-style@w3.org</a>
8989
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
@@ -1589,7 +1589,8 @@ <h3 id="the-domrectlist-interface"><span class="secno">11.1 </span>The <code tit
15891589

15901590
<p>The <code><a href="#domrectlist">DOMRectList</a></code> interface consists of an ordered list of <code><a href="#domrect">DOMRect</a></code> objects.</p>
15911591

1592-
<pre class="idl">interface <dfn id="domrectlist">DOMRectList</dfn> {
1592+
<pre class="idl">[ArrayClass]
1593+
interface <dfn id="domrectlist">DOMRectList</dfn> {
15931594
readonly attribute unsigned long <a href="#dom-domrectlist-length" title="dom-DOMRectList-length">length</a>;
15941595
getter <a href="#domrect">DOMRect</a> <a href="#dom-domrectlist-item" title="dom-DOMRectList-item">item</a>(unsigned long index);
15951596
};</pre>

cssom-view/Overview.src.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1550,7 +1550,8 @@ <h3>The <code title>DOMRectList</code> Interface</h3>
15501550

15511551
<p>The <code>DOMRectList</code> interface consists of an ordered list of <code>DOMRect</code> objects.</p>
15521552

1553-
<pre class=idl>interface <dfn>DOMRectList</dfn> {
1553+
<pre class=idl>[ArrayClass]
1554+
interface <dfn>DOMRectList</dfn> {
15541555
readonly attribute unsigned long <span title=dom-DOMRectList-length>length</span>;
15551556
getter <span>DOMRect</span> <span title=dom-DOMRectList-item>item</span>(unsigned long index);
15561557
};</pre>

cssom/Overview.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<h1>CSS Object Model (CSSOM)</h1>
1717

1818

19-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 18 September 2013</h2>
19+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 19 September 2013</h2>
2020

2121
<dl>
2222

@@ -90,7 +90,7 @@ <h2 class="no-num no-toc" id="sotd">Status of This Document</h2>
9090
can be found in the
9191
<a href="http://www.w3.org/TR/">W3C technical reports index at http://www.w3.org/TR/.</a></em>
9292

93-
<p class="dontpublish">This is the 18 September 2013 Editor's Draft of CSSOM. Please send comments to
93+
<p class="dontpublish">This is the 19 September 2013 Editor's Draft of CSSOM. Please send comments to
9494
<a href="mailto:www-style@w3.org?subject=%5Bcssom%5D%20">www-style@w3.org</a>
9595
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
9696
with <samp>[cssom]</samp> at the start of the subject line.
@@ -578,7 +578,8 @@ <h3 id="the-medialist-interface"><span class="secno">4.4 </span>The <code title=
578578

579579
<p>An object that implements the <code><a href="#medialist">MediaList</a></code> interface has an associated <dfn id="collection-of-media-queries">collection of media queries</dfn>.</p>
580580

581-
<pre class="idl">interface <dfn id="medialist">MediaList</dfn> {
581+
<pre class="idl">[ArrayClass]
582+
interface <dfn id="medialist">MediaList</dfn> {
582583
[TreatNullAs=EmptyString] stringifier attribute DOMString <a href="#dom-medialist-mediatext" title="dom-MediaList-mediaText">mediaText</a>;
583584
readonly attribute unsigned long <a href="#dom-medialist-length" title="dom-MediaList-length">length</a>;
584585
getter DOMString <a href="#dom-medialist-item" title="dom-MediaList-item">item</a>(unsigned long index);

cssom/Overview.src.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,8 @@ <h3>The <code title>MediaList</code> Interface</h3>
498498

499499
<p>An object that implements the <code>MediaList</code> interface has an associated <dfn>collection of media queries</dfn>.</p>
500500

501-
<pre class=idl>interface <dfn>MediaList</dfn> {
501+
<pre class=idl>[ArrayClass]
502+
interface <dfn>MediaList</dfn> {
502503
[TreatNullAs=EmptyString] stringifier attribute DOMString <span title=dom-MediaList-mediaText>mediaText</span>;
503504
readonly attribute unsigned long <span title=dom-MediaList-length>length</span>;
504505
getter DOMString <span title=dom-MediaList-item>item</span>(unsigned long index);

0 commit comments

Comments
 (0)