Skip to content

Commit 1806fe5

Browse files
committed
1 parent 501e060 commit 1806fe5

2 files changed

Lines changed: 32 additions & 21 deletions

File tree

css3-regions/Overview.html

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,13 @@
224224

225225
<h1 id=css-regions-module>CSS Regions Module Level 3</h1>
226226

227-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 14 March 2012</h2>
227+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 15 March 2012</h2>
228228

229229
<dl>
230230
<dt>This version:
231231

232232
<dd><a
233-
href="http://www.w3.org/TR/2012/ED-css3-regions-20120314/">http://www.w3.org/csswg/css3-regions</a>
233+
href="http://www.w3.org/TR/2012/ED-css3-regions-20120315/">http://www.w3.org/csswg/css3-regions</a>
234234

235235
<dt>Latest version:
236236

@@ -1870,7 +1870,7 @@ <h3 id=the-namedflow-interface><span class=secno>6.1. </span>The NamedFlow
18701870
class=idl>Document</code></a> interface provide access to named flows.
18711871

18721872
<pre class=idl>
1873-
[Supplemental] interface <a
1873+
partial interface <a
18741874
href="http://www.w3.org/TR/dom/#interface-document">Document</a> {
18751875
<a
18761876
href="#dom-namedflow">NamedFlow</a> getFlowByName(DOMString name);
@@ -1908,9 +1908,9 @@ <h3 id=the-namedflow-interface><span class=secno>6.1. </span>The NamedFlow
19081908
<pre class=idl>
19091909
interface NamedFlowCollection {
19101910
readonly attribute unsigned long length;
1911-
caller getter <a
1912-
href="#dom-namedflow">NamedFlow</a> item (in unsigned long index);
1913-
}
1911+
getter <a
1912+
href="#dom-namedflow">NamedFlow?</a> item (unsigned long index);
1913+
};
19141914
</pre>
19151915

19161916
<p>The <dfn id=dom-namedflow-collection-length><code
@@ -1920,7 +1920,11 @@ <h3 id=the-namedflow-interface><span class=secno>6.1. </span>The NamedFlow
19201920
<p>The <dfn id=dom-namedflow-collection-item><code
19211921
class=idl>item(index)</code></dfn> method returns the item at index
19221922
<em>index</em> in the collection or <code class=idl>null</code> if
1923-
<em>index</em> is out of range.
1923+
<em>index</em> is out of range. An object <code>collection</code>
1924+
implementing <a
1925+
href="#dom-namedflow-collection"><code>NamedFlowCollection</code></a>
1926+
supports indices in the range <code>0 ≤ index <
1927+
collection.length</code>.
19241928

19251929
<p>The <dfn id=dom-namedflow><code class=idl>NamedFlow</code></dfn>
19261930
interface offers a representation of the <a href="#named-flow0">named
@@ -1978,19 +1982,19 @@ <h3 id=extension-to-the-element-interface><span class=secno>6.2.
19781982
</span>Extension to the Element interface</h3>
19791983

19801984
<p>When an region is an actual <a
1981-
href="http://www.w3.org/TR/dom/#interface-element">element</a>, it is
1985+
href="http://www.w3.org/TR/dom/#interface-element">Element</a>, it is
19821986
convenient to easily find out if content fully fits into the
19831987
<span>region</span> or not. The supplemental interface on <a
19841988
href="http://www.w3.org/TR/dom/#interface-element"><code
19851989
class=idl>Element</code></a> provides that functionality.
19861990

19871991
<pre class=idl>
1988-
[Supplemental] interface <a
1992+
partial interface <a
19891993
href="http://www.w3.org/TR/dom/#interface-element">Element</a> {
19901994
readonly attribute DOMString <a
19911995
href="#dom-element-regionoverflow">regionOverflow</a>;
1992-
getter <a
1993-
href="#">Range</a>[] <a
1996+
sequence&lt;<a
1997+
href="#">Range</a>&gt; <a
19941998
href="#dom-element-getregionflowranges">getRegionFlowRanges()</a>;
19951999
};
19962000

@@ -2234,6 +2238,10 @@ <h3 id="changes_from_June_09_2011"><span class=secno>10.1. </span>Changes
22342238
list review comments</a>
22352239

22362240
<li>Fixed DOM references to now point to the DOM TR
2241+
2242+
<li>Fixed Web IDL issues as reported in <a
2243+
href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=15931">Issue
2244+
15931</a>
22372245
</ul>
22382246

22392247
<h3 id="changes_from_June_09_2011"><span class=secno>10.2. </span>Changes
@@ -2599,9 +2607,9 @@ <h3 class=no-num id=normative-references>Normative references</h3>
25992607
<dt id=DOM>[DOM]
26002608

26012609
<dd>Anne van Kesteren; Aryeh Gregor; Ms2ger. <a
2602-
href="http://www.w3.org/TR/2011/WD-dom-20110915/"><cite>DOM4.</cite></a>
2603-
15 September 2011. W3C Working Draft. (Work in progress.) URL: <a
2604-
href="http://www.w3.org/TR/2011/WD-dom-20110915/">http://www.w3.org/TR/2011/WD-dom-20110915/</a>
2610+
href="http://www.w3.org/TR/2012/WD-dom-20120105/"><cite>DOM4.</cite></a>
2611+
5 January 2012. W3C Working Draft. (Work in progress.) URL: <a
2612+
href="http://www.w3.org/TR/2012/WD-dom-20120105/">http://www.w3.org/TR/2012/WD-dom-20120105/</a>
26052613
</dd>
26062614
<!---->
26072615

css3-regions/Overview.src.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1635,7 +1635,7 @@ <h3 id="the-namedflow-interface">The NamedFlow interface</h3>
16351635
"idl">Document</code></a> interface provide access to named flows.</p>
16361636

16371637
<pre class="idl">
1638-
[Supplemental] interface <a href=
1638+
partial interface <a href=
16391639
"http://www.w3.org/TR/dom/#interface-document">Document</a> {
16401640
<a href="#dom-namedflow">NamedFlow</a> getFlowByName(DOMString name);
16411641
<a href="#dom-namedflow-collection">NamedFlowCollection</a> getNamedFlows();
@@ -1671,15 +1671,17 @@ <h3 id="the-namedflow-interface">The NamedFlow interface</h3>
16711671
<pre class="idl">
16721672
interface NamedFlowCollection {
16731673
readonly attribute unsigned long length;
1674-
caller getter <a href="#dom-namedflow">NamedFlow</a> item (in unsigned long index);
1675-
}
1674+
getter <a href="#dom-namedflow">NamedFlow?</a> item (unsigned long index);
1675+
};
16761676
</pre>
16771677

16781678
<p>The <dfn id="dom-namedflow-collection-length"><code class="idl">length</code></dfn>
16791679
attribute returns the number of items in the collection.</p>
16801680
<p>The <dfn id="dom-namedflow-collection-item"><code class="idl">item(index)</code></dfn>
16811681
method returns the item at index <em>index</em>
1682-
in the collection or <code class="idl">null</code> if <em>index</em> is out of range.</p>
1682+
in the collection or <code class="idl">null</code> if <em>index</em> is out of range.
1683+
An object <code>collection</code> implementing <code>NamedFlowCollection</code> supports
1684+
indices in the range <code>0 ≤ index < collection.length</code>.</p>
16831685

16841686
<p>The <dfn id="dom-namedflow"><code class="idl">NamedFlow</code></dfn>
16851687
interface offers a representation of the <span>named flow</span>.</p>
@@ -1729,16 +1731,16 @@ <h3 id="extension-to-the-element-interface">Extension to the Element
17291731
interface</h3>
17301732

17311733
<p>When an region is an actual <a href=
1732-
"http://www.w3.org/TR/dom/#interface-element">element</a>,
1734+
"http://www.w3.org/TR/dom/#interface-element">Element</a>,
17331735
it is convenient to easily find out if content fully fits into the
17341736
<span>region</span> or not. The supplemental interface on <a href=
17351737
"http://www.w3.org/TR/dom/#interface-element"><code class=
17361738
"idl">Element</code></a> provides that functionality.</p>
17371739
<pre class="idl">
1738-
[Supplemental] interface <a href=
1740+
partial interface <a href=
17391741
"http://www.w3.org/TR/dom/#interface-element">Element</a> {
17401742
readonly attribute DOMString <a href="#dom-element-regionoverflow">regionOverflow</a>;
1741-
getter <a href="#">Range</a>[] <a href=
1743+
sequence&lt;<a href="#">Range</a>&gt; <a href=
17421744
"#dom-element-getregionflowranges">getRegionFlowRanges()</a>;
17431745
};
17441746

@@ -1898,6 +1900,7 @@ <h3 id="changes_from_June_09_2011">Changes from <a href="http://www.w3.org/TR/20
18981900
<li>Multiple editorial changes following
18991901
<a href="http://lists.w3.org/Archives/Public/www-style/2012Feb/0001.html">mailing list review comments</a></li>
19001902
<li>Fixed DOM references to now point to the DOM TR</li>
1903+
<li>Fixed Web IDL issues as reported in <a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=15931">Issue 15931</a></li>
19011904
</ul>
19021905

19031906

0 commit comments

Comments
 (0)