Skip to content

Commit

Permalink
[shadow-dom] [Fix #107] Rename Event.encapsulated to Event.scoped.
Browse files Browse the repository at this point in the history
  • Loading branch information
hayatoito committed Jun 11, 2015
1 parent 3bdc6e9 commit 2fe254e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec/shadow/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ <h2>Events</h2>
<section>
<h3>Events that are not leaked into ancestor trees</h3>

<p>For the following events, <a>encapsulated flag</a> is initialized to true by default if the events are dispatched by the user agent:</p>
<p>For the following events, <a>scoped flag</a> is initialized to true by default if the events are dispatched by the user agent:</p>
<ul>
<li><code>abort</code></li>
<li><code>error</code></li>
Expand Down Expand Up @@ -562,7 +562,7 @@ <h3>Event Paths</h3>
<ol>
<li><var>CURRENT</var> is a shadow root</li>
<li><var>CURRENT</var> is the <a>root</a> node of <var>NODE</var></li>
<li><var>EVENT</var>'s <a>encapsulated flag</a> is set</li>
<li><var>EVENT</var>'s <a>scoped flag</a> is set</li>
</ol>
</li>
<li>
Expand Down Expand Up @@ -1363,9 +1363,9 @@ <h3>The <code>content</code> element</h3>
<h3>Extensions to <a><code>EventInit</code></a> Dictionary</h3>

<dl class="idl" title="partial dictionary EventInit">
<dt>boolean encapsulated = false</dt>
<dt>boolean scoped = false</dt>
<dd>
<p>Specifies the <a>encapsulated flag</a> of <code>Event</code></p>
<p>Specifies the <a>scoped flag</a> of <code>Event</code></p>
</dd>
</dl>
</section>
Expand Down Expand Up @@ -1419,10 +1419,10 @@ <h3>Extensions to <code>Event</code> Interface</h3>
See <a href="https://github.com/w3c/webcomponents/issues/101">Issue #101</a>
</p>
</dd>
<dt>readonly attribute boolean encapsulated</dt>
<dt>readonly attribute boolean scoped</dt>
<dd>
<p>
Returns the <dfn>encapsulated flag</dfn>.
Returns the <dfn>scoped flag</dfn>.
</p>
</dd>
</dl>
Expand Down

0 comments on commit 2fe254e

Please sign in to comment.