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 2 March 2012</ h2 >
227+ < h2 class ="no-num no-toc " id =longstatus-date > Editor's Draft 14 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-20120302 / "> http://www.w3.org/csswg/css3-regions</ a >
233+ href ="http://www.w3.org/TR/2012/ED-css3-regions-20120314 / "> http://www.w3.org/csswg/css3-regions</ a >
234234
235235 < dt > Latest version:
236236
@@ -808,8 +808,8 @@ <h2 id=relation-to-document-events><span class=secno>3. </span>Relation to
808808 < p > The CSS regions module does not alter the normal processing of events in
809809 the document tree. In particular, if an event occurs on an element that is
810810 part of a named flow, the < a
811- href ="http://www.w3.org/TR/DOM-Level-3-Events/#dom-event-architecture "> event's
812- bubble and capture phases</ a > happen following the document tree order.
811+ href ="http://www.w3.org/TR/dom/#events "> event's bubble and capture
812+ phases</ a > happen following the document tree order.
813813
814814 < h2 id =properties-and-rules > < span class =secno > 4. </ span > Properties and
815815 rules</ h2 >
@@ -1563,8 +1563,7 @@ <h3 id=the-at-region-style-rule><span class=secno>4.5. </span>The @region
15631563 region's ‘< code class =css > flow segment</ code > ’ selector. The
15641564 region's flow segment selector specifies which range of elements in the
15651565 flow are subject to the style rules in the following block: it applies to
1566- the range (see < a href ="#DOM-LEVEL-2-TRAVERSAL-RANGE "
1567- rel =biblioentry > [DOM-LEVEL-2-TRAVERSAL-RANGE]<!--{{DOM-LEVEL-2-TRAVERSAL-RANGE}}--> </ a > )
1566+ the range (see < a href ="#DOM " rel =biblioentry > [DOM]<!--{{!DOM}}--> </ a > )
15681567 from the region's flow that flows in the selected region(s).
15691568
15701569 < div class =issue-marker data-bug_id =15713 data-bug_status =NEW > < a
@@ -1867,27 +1866,26 @@ <h3 id=the-namedflow-interface><span class=secno>6.1. </span>The NamedFlow
18671866 </ div >
18681867
18691868 < p > Supplemental methods on the < a
1870- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document "> < code
1869+ href ="http://www.w3.org/TR/dom/#interface-document "> < code
18711870 class =idl > Document</ code > </ a > interface provide access to named flows.
18721871
18731872 < pre class =idl >
18741873[Supplemental] interface < a
1875- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document "> Document</ a > {
1874+ href ="http://www.w3.org/TR/dom/#interface-document "> Document</ a > {
18761875 < a
1877- href ="#dom-namedflow "> NamedFlow</ a > getFlowByName(< a
1878- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMString "> DOMString</ a > name);
1876+ href ="#dom-namedflow "> NamedFlow</ a > getFlowByName(DOMString name);
18791877 < a
18801878 href ="#dom-namedflow-collection "> NamedFlowCollection</ a > getNamedFlows();
18811879};
18821880</ pre >
18831881
18841882 < p > The < code class =idl > getNamedFlows</ code > method on the < a
1885- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document "> < code
1883+ href ="http://www.w3.org/TR/dom/#interface-document "> < code
18861884 class =idl > Document</ code > </ a > interface returns the list of all the < a
18871885 href ="#named-flow0 "> named flow</ a > s in the document.
18881886
18891887 < p > The < code class =idl > getFlowByName</ code > method on the < a
1890- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document "> < code
1888+ href ="http://www.w3.org/TR/dom/#interface-document "> < code
18911889 class =idl > Document</ code > </ a > interface provides access to the document's
18921890 < a href ="#named-flow0 "> named flow</ a > instances.
18931891
@@ -1938,15 +1936,14 @@ <h3 id=the-namedflow-interface><span class=secno>6.1. </span>The NamedFlow
19381936
19391937 < pre class =idl >
19401938interface < a href ="#dom-namedflow "> NamedFlow</ a > {
1941- readonly attribute < a
1942- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMString "> DOMString</ a > name;
1939+ readonly attribute DOMString name;
19431940 readonly attribute boolean < a
19441941 href ="#dom-namedflow-overflow "> overflow</ a > ;
19451942 readonly attribute < a
1946- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-536297177 "> NodeList</ a > contentNodes;
1943+ href ="http://www.w3.org/TR/dom/#interface-nodelist "> NodeList</ a > contentNodes;
19471944 < a
1948- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-536297177 "> NodeList</ a > getRegionsByContentNode(< a
1949- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1950641247 "> Node</ a > node);
1945+ href ="http://www.w3.org/TR/dom/#interface-nodelist "> NodeList</ a > getRegionsByContentNode(< a
1946+ href ="http://www.w3.org/TR/dom/#interface-node "> Node</ a > node);
19501947};</ pre >
19511948
19521949 < p > The < dfn id =dom-namedflow-name > < code class =idl > name</ code > </ dfn >
@@ -1981,17 +1978,16 @@ <h3 id=extension-to-the-element-interface><span class=secno>6.2.
19811978 </ span > Extension to the Element interface</ h3 >
19821979
19831980 < p > When an region is an actual < a
1984- href ="http://www.w3.org/TR/DOM-Level-3-Core/glossary.html#dt -element "> element</ a > ,
1985- it is convenient to easily find out if content fully fits into the
1981+ href ="http://www.w3.org/TR/dom/#interface -element "> element</ a > , it is
1982+ convenient to easily find out if content fully fits into the
19861983 < span > region</ span > or not. The supplemental interface on < a
1987- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-745549614 "> < code
1984+ href ="http://www.w3.org/TR/dom/#interface-element "> < code
19881985 class =idl > Element</ code > </ a > provides that functionality.
19891986
19901987 < pre class =idl >
19911988[Supplemental] interface < a
1992- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-745549614 "> Element</ a > {
1993- readonly attribute < a
1994- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMString "> DOMString</ a > < a
1989+ href ="http://www.w3.org/TR/dom/#interface-element "> Element</ a > {
1990+ readonly attribute DOMString < a
19951991 href ="#dom-element-regionoverflow "> regionOverflow</ a > ;
19961992 getter < a
19971993 href ="# "> Range</ a > [] < a
@@ -2052,17 +2048,17 @@ <h3 id=extension-to-the-element-interface><span class=secno>6.2.
20522048
20532049 < p > The < dfn id =dom-element-getregionflowranges > getRegionFlowRanges</ dfn >
20542050 method returns an array of < a
2055- href ="http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-idl " >
2056- Range </ a > instances corresponding to the content from the region flow that
2057- is positioned in the region.
2051+ href ="http://www.w3.org/TR/dom/#interface-range " > Range </ a > instances
2052+ corresponding to the content from the region flow that is positioned in
2053+ the region.
20582054
20592055 < p > If an element is not a < span > region</ span > , the < a
20602056 href ="#dom-element-getregionflowranges "> < code class =idl > < span
20612057 title ="#document-element-getregionflowranges "> getRegionFlowRanges</ span > </ code > </ a >
20622058 method throws a < a
2063- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-17189187 "> < code
2059+ href ="http://www.w3.org/TR/dom/#interface-domexception "> < code
20642060 class =idl > DOMException</ code > </ a > with the < a
2065- href ="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMException-INVALID_ACCESS_ERR "> < code
2061+ href ="http://www.w3.org/TR/dom/#dom-domexception-invalid_access_err "> < code
20662062 class =idl > INVALID_ACCESS_ERR</ code > </ a > error code.
20672063
20682064 < div class =note > < span class =note-prefix > Note </ span > The Element interface
@@ -2079,10 +2075,9 @@ <h3 id=region-flow-layout-events><span class=secno>6.3. </span>Region flow
20792075 </ div >
20802076 </ div >
20812077
2082- < p > Region < a
2083- href ="http://www.w3.org/TR/DOM-Level-3-Events/#glossary-event "> Event
2084- Targets</ a > dispatch < code class =idl > regionLayoutUpdate</ code > events when
2085- there is a possible layout change of their named flow segment.
2078+ < p > Region < a href =""> Event Targets</ a > dispatch < code
2079+ class =idl > regionLayoutUpdate</ code > events when there is a possible layout
2080+ change of their named flow segment.
20862081
20872082 < table border =0 cellpadding =2 cellspacing =0 class =event-desc
20882083 summary ="This table contains information about the semantics of the given event type ">
@@ -2095,7 +2090,10 @@ <h3 id=region-flow-layout-events><span class=secno>6.3. </span>Region flow
20952090 < tr class ="assert must ">
20962091 < th > Interface
20972092
2098- < td > < code > UIEvent</ code >
2093+ < td > < code > < a
2094+ href ="http://www.w3.org/TR/DOM-Level-3-Events/#webidl-events-UIEvent "> UIEvent</ a > </ code > (see
2095+ < a href ="#DOM-LEVEL-3-EVENTS "
2096+ rel =biblioentry > [DOM-LEVEL-3-EVENTS]<!--{{!DOM-LEVEL-3-EVENTS}}--> </ a > )
20992097
21002098 < tr class ="assert must ">
21012099 < th > Sync / Async
@@ -2234,6 +2232,8 @@ <h3 id="changes_from_June_09_2011"><span class=secno>10.1. </span>Changes
22342232 < li > Multiple editorial changes following < a
22352233 href ="http://lists.w3.org/Archives/Public/www-style/2012Feb/0001.html "> mailing
22362234 list review comments</ a >
2235+
2236+ < li > Fixed DOM references to now point to the DOM TR
22372237 </ ul >
22382238
22392239 < h3 id ="changes_from_June_09_2011 "> < span class =secno > 10.2. </ span > Changes
@@ -2596,6 +2596,25 @@ <h3 class=no-num id=normative-references>Normative references</h3>
25962596 </ dd >
25972597 <!---->
25982598
2599+ < dt id =DOM > [DOM]
2600+
2601+ < 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 >
2605+ </ dd >
2606+ <!---->
2607+
2608+ < dt id =DOM-LEVEL-3-EVENTS > [DOM-LEVEL-3-EVENTS]
2609+
2610+ < dd > Doug Schepers; et al. < a
2611+ href ="http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531 "> < cite > Document
2612+ Object Model (DOM) Level 3 Events Specification.</ cite > </ a > 31 May 2011.
2613+ W3C Working Draft. (Work in progress.) URL: < a
2614+ href ="http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531 "> http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531</ a >
2615+ </ dd >
2616+ <!---->
2617+
25992618 < dt id =SELECT > [SELECT]
26002619
26012620 < dd > Tantek Çelik; et al. < a
@@ -2684,16 +2703,6 @@ <h3 class=no-num id=other-references>Other references</h3>
26842703 </ dd >
26852704 <!---->
26862705
2687- < dt id =DOM-LEVEL-2-TRAVERSAL-RANGE > [DOM-LEVEL-2-TRAVERSAL-RANGE]
2688-
2689- < dd > Joe Kesselman; et al. < a
2690- href ="http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113 "> < cite > Document
2691- Object Model (DOM) Level 2 Traversal and Range Specification.</ cite > </ a >
2692- 13 November 2000. W3C Recommendation. URL: < a
2693- href ="http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113 "> http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113</ a >
2694- </ dd >
2695- <!---->
2696-
26972706 < dt id =MEDIAQ > [MEDIAQ]
26982707
26992708 < dd > Håkon Wium Lie; et al. < a
0 commit comments