Skip to content

Commit 0681ac7

Browse files
committed
change NamedFlow to inherit from EventTarget
1 parent 812e3fe commit 0681ac7

2 files changed

Lines changed: 13 additions & 9 deletions

File tree

css3-regions/Overview.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838

3939
<h1 id=css-regions-module>CSS Regions Module Level 3</h1>
4040

41-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 8 August 2012</h2>
41+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 11 August 2012</h2>
4242

4343
<dl>
4444
<dt>This version:
4545

4646
<dd><a
47-
href="http://www.w3.org/TR/2012/ED-css3-regions-20120808/">http://www.w3.org/csswg/css3-regions</a>
47+
href="http://www.w3.org/TR/2012/ED-css3-regions-20120811/">http://www.w3.org/csswg/css3-regions</a>
4848

4949
<dt>Latest version:
5050

@@ -1853,8 +1853,7 @@ <h3 id=the-namedflow-interface><span class=secno>6.1. </span>The NamedFlow
18531853
false.
18541854

18551855
<pre class=idl>
1856-
interface <a
1857-
href="#dom-named-flow">NamedFlow</a> implements <a
1856+
interface <a href="#dom-named-flow">NamedFlow</a> : <a
18581857
href="http://www.w3.org/TR/dom/#interface-eventtarget">EventTarget</a> {
18591858
readonly attribute DOMString <a
18601859
href="#dom-named-flow-name">name</a>;
@@ -2226,9 +2225,11 @@ <h3 id=region-flow-layout-events><span class=secno>6.4. </span>Region flow
22262225
layout events</h3>
22272226

22282227
<p><a href="#dom-named-flow"><code class=idl>NamedFlow</code></a> objects
2229-
are <a href="">Event Targets</a> which dispatch <code
2230-
class=idl>regionLayoutUpdate</code> events when there is a possible layout
2231-
change in their region chain. Note that the event is asynchronous.
2228+
are <a
2229+
href="http://www.w3.org/TR/dom/#interface-eventtarget">EventTargets</a>
2230+
which dispatch <code class=idl>regionLayoutUpdate</code> events when there
2231+
is a possible layout change in their region chain. Note that the event is
2232+
asynchronous.
22322233

22332234
<p>If region chain nesting occurs (the contents of a <a
22342235
href="#dom-named-flow"><code class=idl>NamedFlow</code></a> contains
@@ -2817,6 +2818,8 @@ <h3 id="changes_from_May_03_2012"><span class=secno>12.1. </span>Changes
28172818
3<sup>rd</sup> 2012</a> version</h3>
28182819

28192820
<ul>
2821+
<li>Changed NamedFlow to inherit from EventTarget
2822+
28202823
<li>Removed flowFrom from Region interface and changed method name to
28212824
getComputedRegionStyle().
28222825

css3-regions/Overview.src.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ <h3 id="the-namedflow-interface">The NamedFlow interface</h3>
16721672
would be false.</p>
16731673

16741674
<pre class="idl">
1675-
interface <a href="#dom-named-flow">NamedFlow</a> implements <a href="http://www.w3.org/TR/dom/#interface-eventtarget">EventTarget</a> {
1675+
interface <a href="#dom-named-flow">NamedFlow</a> : <a href="http://www.w3.org/TR/dom/#interface-eventtarget">EventTarget</a> {
16761676
readonly attribute DOMString <a href="#dom-named-flow-name">name</a>;
16771677
readonly attribute boolean <a href="#dom-named-flow-overset">overset</a>;
16781678
sequence&lt;<a href="#region-interface">Region</a>&gt; <a href="#dom-named-flow-get-regions">getRegions()</a>;
@@ -1997,7 +1997,7 @@ <h3 id="region-style-rule-interface">The CSSRegionStyleRule interface</h3>
19971997
<h3 id="region-flow-layout-events">Region flow layout events</h3>
19981998

19991999
<p><a href="#dom-named-flow"><code class="idl">NamedFlow</code></a>
2000-
objects are <a href="">Event Targets</a>
2000+
objects are <a href="http://www.w3.org/TR/dom/#interface-eventtarget">EventTargets</a>
20012001
which dispatch <code class="idl">regionLayoutUpdate</code> events
20022002
when there is a possible layout change
20032003
in their region chain.
@@ -2445,6 +2445,7 @@ <h2 id="changes">Changes</h2>
24452445
<h3 id="changes_from_May_03_2012">Changes from <a href="http://www.w3.org/TR/2012/WD-css3-regions-20120503/">May 3<sup>rd</sup> 2012</a> version</h3>
24462446

24472447
<ul>
2448+
<li>Changed NamedFlow to inherit from EventTarget</li>
24482449
<li>Removed flowFrom from Region interface and changed method name to getComputedRegionStyle().</li>
24492450
<li>Region interface is now a supplemental interface with the [NoInterfaceObject] extended attribute.</li>
24502451
<li>Added note for regionLayoutUpdate dispatching in nested flows.</li>

0 commit comments

Comments
 (0)