Skip to content

Commit 501e060

Browse files
committed
Fixed DOM reference issues as per https://www.w3.org/Bugs/Public/show_bug.cgi?id=15932
1 parent a0ea0b4 commit 501e060

3 files changed

Lines changed: 122 additions & 64 deletions

File tree

css3-regions/Makefile

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# $Id: Makefile,v 1.5 2008/02/06 14:05:15 mike Exp $
2+
#
3+
# http://dev.w3.org/buildtools/css3-module-postprocessor/Makefile
4+
#
5+
# This is a makefile for generating output using the CSS3 module
6+
# postprocessor. Details about that are here:
7+
#
8+
# http://www.w3.org/Style/Group/css3-src/bin/postprocess
9+
#
10+
# To use this makefile, you need to have the "make" and "curl"
11+
# programs installed. If you are running a Windows/MS-DOS system,
12+
# you can download the "make" and "curl" programs from here:
13+
#
14+
# http://gnuwin32.sourceforge.net/downlinks/make.php
15+
# http://curl.haxx.se/dlwiz/?type=bin&os=Win32&flav=-&ver=2000/XP
16+
#
17+
# You also need to install either a .curlrc (*NIX/*BSD) or _curlrc
18+
# (MS-DOS ) file in your HOME directory, with at minimum the
19+
# following contents:
20+
#
21+
# user = foo:bar
22+
#
23+
# ...where "foo" and "bar" are your W3C username and password.
24+
25+
SOURCEFILE=Overview.src.html
26+
OUTPUTFILE=Overview.html
27+
PROCESSCGI=http://cgi.w3.org/member-bin/process.cgi
28+
CURL=curl
29+
CURLFLAGS=
30+
31+
# if you want to set a publication date other than today's date,
32+
# invoke make like this: "make PUBDATE=2008-03-19"
33+
PUBMSG=
34+
PUBDATE=
35+
USER=
36+
37+
W3C_CSS_DIR=~/work/W3C/cvs/dev.w3.org/csswg/css3-regions
38+
39+
all: $(OUTPUTFILE)
40+
41+
$(OUTPUTFILE): $(SOURCEFILE)
42+
ifeq (,$(PUBDATE))
43+
$(CURL) $(CURLFLAGS) --user $(USER) -F file="@$<" -o "$@" -F group=CSS -F output=html -F method=file $(PROCESSCGI)
44+
else
45+
$(CURL) $(CURLFLAGS) --user $(USER) -F file="@$<" -o "$@" -F group=CSS -F output=html -F method=file $(PROCESSCGI) -F date=$(PUBDATE)
46+
endif
47+
48+
49+
50+

css3-regions/Overview.html

Lines changed: 52 additions & 43 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 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 &lsquo;<code class=css>flow segment</code>&rsquo; 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>
19401938
interface <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 &#199;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&#229;kon Wium Lie; et al. <a

css3-regions/Overview.src.html

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ <h2 id="relation-to-document-events">Relation to document events</h2>
645645
<p>The CSS regions module does not alter the normal processing of
646646
events in the document tree. In particular, if an event occurs on an
647647
element that is part of a named flow, the <a href=
648-
"http://www.w3.org/TR/DOM-Level-3-Events/#dom-event-architecture">event's
648+
"http://www.w3.org/TR/dom/#events">event's
649649
bubble and capture phases</a> happen following the document tree order.</p>
650650

651651
<h2 id="properties-and-rules">Properties and rules</h2>
@@ -1375,7 +1375,7 @@ <h3 id="the-at-region-style-rule">The @region rule</h3>
13751375
the region's 'flow segment' selector. The region's flow segment selector
13761376
specifies which range of elements in the flow are subject to the style rules in the
13771377
following block: it applies to the range (see
1378-
[[DOM-LEVEL-2-TRAVERSAL-RANGE]]) from the region's flow that flows in the
1378+
[[!DOM]]) from the region's flow that flows in the
13791379
selected region(s).</p>
13801380

13811381
<div class="issue-marker" data-bug_id="15713" data-bug_status="NEW">
@@ -1631,24 +1631,24 @@ <h3 id="the-namedflow-interface">The NamedFlow interface</h3>
16311631
</div>
16321632

16331633
<p>Supplemental methods on the <a href=
1634-
"http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document"><code class=
1634+
"http://www.w3.org/TR/dom/#interface-document"><code class=
16351635
"idl">Document</code></a> interface provide access to named flows.</p>
16361636

16371637
<pre class="idl">
16381638
[Supplemental] interface <a href=
1639-
"http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document">Document</a> {
1640-
<a href="#dom-namedflow">NamedFlow</a> getFlowByName(<a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMString">DOMString</a> name);
1639+
"http://www.w3.org/TR/dom/#interface-document">Document</a> {
1640+
<a href="#dom-namedflow">NamedFlow</a> getFlowByName(DOMString name);
16411641
<a href="#dom-namedflow-collection">NamedFlowCollection</a> getNamedFlows();
16421642
};
16431643
</pre>
16441644

16451645
<p>The <code class="idl">getNamedFlows</code> method on the <a href=
1646-
"http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document"><code class=
1646+
"http://www.w3.org/TR/dom/#interface-document"><code class=
16471647
"idl">Document</code></a> interface returns the list of all the <span>named
16481648
flow</span>s in the document.</p>
16491649

16501650
<p>The <code class="idl">getFlowByName</code> method on the <a href=
1651-
"http://www.w3.org/TR/DOM-Level-3-Core/core.html#i-Document"><code class=
1651+
"http://www.w3.org/TR/dom/#interface-document"><code class=
16521652
"idl">Document</code></a> interface provides access to the document's <span
16531653
>named flow</span> instances.</p>
16541654

@@ -1693,10 +1693,10 @@ <h3 id="the-namedflow-interface">The NamedFlow interface</h3>
16931693

16941694
<pre class="idl">
16951695
interface <a href="#dom-namedflow">NamedFlow</a> {
1696-
readonly attribute <a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMString">DOMString</a> name;
1696+
readonly attribute DOMString name;
16971697
readonly attribute boolean <a href="#dom-namedflow-overflow">overflow</a>;
1698-
readonly attribute <a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-536297177">NodeList</a> contentNodes;
1699-
<a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-536297177">NodeList</a> getRegionsByContentNode(<a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1950641247">Node</a> node);
1698+
readonly attribute <a href="http://www.w3.org/TR/dom/#interface-nodelist">NodeList</a> contentNodes;
1699+
<a href="http://www.w3.org/TR/dom/#interface-nodelist">NodeList</a> getRegionsByContentNode(<a href="http://www.w3.org/TR/dom/#interface-node">Node</a> node);
17001700
};</pre>
17011701

17021702
<p>The <dfn id="dom-namedflow-name"><code class="idl">name</code></dfn> attribute
@@ -1729,16 +1729,15 @@ <h3 id="extension-to-the-element-interface">Extension to the Element
17291729
interface</h3>
17301730

17311731
<p>When an region is an actual <a href=
1732-
"http://www.w3.org/TR/DOM-Level-3-Core/glossary.html#dt-element">element</a>,
1732+
"http://www.w3.org/TR/dom/#interface-element">element</a>,
17331733
it is convenient to easily find out if content fully fits into the
17341734
<span>region</span> or not. The supplemental interface on <a href=
1735-
"http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-745549614"><code class=
1735+
"http://www.w3.org/TR/dom/#interface-element"><code class=
17361736
"idl">Element</code></a> provides that functionality.</p>
17371737
<pre class="idl">
17381738
[Supplemental] interface <a href=
1739-
"http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-745549614">Element</a> {
1740-
readonly attribute <a href=
1741-
"http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMString">DOMString</a> <a href="#dom-element-regionoverflow">regionOverflow</a>;
1739+
"http://www.w3.org/TR/dom/#interface-element">Element</a> {
1740+
readonly attribute DOMString <a href="#dom-element-regionoverflow">regionOverflow</a>;
17421741
getter <a href="#">Range</a>[] <a href=
17431742
"#dom-element-getregionflowranges">getRegionFlowRanges()</a>;
17441743
};
@@ -1791,14 +1790,14 @@ <h3 id="extension-to-the-element-interface">Extension to the Element
17911790

17921791
<p>The <dfn id="dom-element-getregionflowranges">getRegionFlowRanges</dfn> method returns
17931792
an array of <a href=
1794-
"http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-idl">
1793+
"http://www.w3.org/TR/dom/#interface-range">
17951794
Range</a> instances corresponding to the content from the region flow that
17961795
is positioned in the region.</p>
17971796

17981797
<p>If an element is not a <span>region</span>, the <code class=
17991798
"idl"><span title="#document-element-getregionflowranges">getRegionFlowRanges</span></code>
1800-
method throws a <a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-17189187"><code class="idl">DOMException</code></a> with the
1801-
<a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMException-INVALID_ACCESS_ERR"><code class="idl">INVALID_ACCESS_ERR</code></a> error code.</p>
1799+
method throws a <a href="http://www.w3.org/TR/dom/#interface-domexception"><code class="idl">DOMException</code></a> with the
1800+
<a href="http://www.w3.org/TR/dom/#dom-domexception-invalid_access_err"><code class="idl">INVALID_ACCESS_ERR</code></a> error code.</p>
18021801

18031802
<div class="note"><span class="note-prefix">Note </span>
18041803
The Element interface extension is only available to regions that are
@@ -1817,13 +1816,13 @@ <h3 id="region-flow-layout-events">Region flow layout events</h3>
18171816
</div>
18181817
</div>
18191818

1820-
<p>Region <a href="http://www.w3.org/TR/DOM-Level-3-Events/#glossary-event">Event Targets</a>
1819+
<p>Region <a href="">Event Targets</a>
18211820
dispatch <code class="idl">regionLayoutUpdate</code> events when there is a possible layout change of their named flow segment.</p>
18221821

18231822
<table class="event-desc" border="0" summary="This table contains information about the semantics of the given event type" cellpadding="2" cellspacing="0">
18241823
<tbody><tr class="assert must"><th>Type</th>
18251824
<td class="eventname"><strong><code>regionLayoutUpdate</code></strong></td></tr>
1826-
<tr class="assert must"><th>Interface</th> <td><code>UIEvent</code></td></tr>
1825+
<tr class="assert must"><th>Interface</th> <td><code><a href="http://www.w3.org/TR/DOM-Level-3-Events/#webidl-events-UIEvent">UIEvent</a></code>(see [[!DOM-LEVEL-3-EVENTS]])</td></tr>
18271826
<tr class="assert must"><th>Sync / Async</th> <td>Async</td></tr>
18281827
<tr class="assert must"><th>Bubbles</th> <td>Yes</td></tr>
18291828
<tr class="assert must"><th>Target</th> <td><code>Element</code></td></tr>
@@ -1898,7 +1897,7 @@ <h3 id="changes_from_June_09_2011">Changes from <a href="http://www.w3.org/TR/20
18981897
<li>Modified initial examples as per <a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=15131">Bug 15131</a></li>
18991898
<li>Multiple editorial changes following
19001899
<a href="http://lists.w3.org/Archives/Public/www-style/2012Feb/0001.html">mailing list review comments</a></li>
1901-
1900+
<li>Fixed DOM references to now point to the DOM TR</li>
19021901
</ul>
19031902

19041903

0 commit comments

Comments
 (0)