[html5] r8265 - [] (0) Provide integration hook for Custom Elements spec. Fixing https://www.w3. [...]

whatwg at whatwg.org whatwg at whatwg.org
Mon Nov 11 14:10:17 PST 2013


Author: ianh
Date: 2013-11-11 14:10:16 -0800 (Mon, 11 Nov 2013)
New Revision: 8265

Modified:
   complete.html
   index
   source
Log:
[] (0) Provide integration hook for Custom Elements spec.
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=22409
Affected topics: DOM APIs, HTML

Modified: complete.html
===================================================================
--- complete.html	2013-11-11 18:53:13 UTC (rev 8264)
+++ complete.html	2013-11-11 22:10:16 UTC (rev 8265)
@@ -70230,8 +70230,8 @@
 
   <p class=note>The WebIDL specification also uses these algorithms. <a href=#refsWEBIDL>[WEBIDL]</a></p>
 
-  <hr><p>Each <a href=#unit-of-related-similar-origin-browsing-contexts>unit of related similar-origin browsing contexts</a> has a <dfn id=running-mutation-observers>running mutation
-  observers</dfn> flag, which must initially be false. It is used to prevent reentrant invocation of
+  <hr><!--CLEANUP--><p>Each <a href=#unit-of-related-similar-origin-browsing-contexts>unit of related similar-origin browsing contexts</a> has a <dfn id=performing-a-microtask-checkpoint>performing
+  a microtask checkpoint</dfn> flag, which must initially be false. It is used to prevent reentrant invocation of
   the algorithm to <a href=#concept-mo-invoke title=concept-mo-invoke>invoke <code>MutationObserver</code>
   objects</a>. For the purposes of <code><a href=#mutationobserver>MutationObserver</a></code> objects, each <a href=#unit-of-related-similar-origin-browsing-contexts>unit of
   related similar-origin browsing contexts</a> is a distinct <var title="MutationObserver
@@ -70610,11 +70610,12 @@
 
    <li><p>Return to the first step of the <a href=#event-loop>event loop</a>.</li>
 
-  </ol><hr><p>When a user agent is to <dfn id=perform-a-microtask-checkpoint>perform a microtask checkpoint</dfn>, if the <a href=#running-mutation-observers>running
-  mutation observers</a> flag is false, then the user agent must run the following steps:</p>
+  </ol><hr><!--CLEANUP--><p>When a user agent is to <dfn id=perform-a-microtask-checkpoint>perform a microtask checkpoint</dfn>, if the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag is false, then the user agent must run the following steps:</p>
 
-  <ol><li><p>Let the <a href=#running-mutation-observers>running mutation observers</a> flag be true.</li>
+  <ol><!--CLEANUP--><li><p>Let the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag be true.</li>
 
+   <li><p><dfn id=perform-a-custom-elements-checkpoint>Perform a custom elements checkpoint</dfn>. <a href=#refsCUSTOM>[CUSTOM]</a></li>
+
    <li><p><a href=#sort-the-tables-with-pending-sorts>Sort the tables with pending sorts</a>.</li>
 
    <li>
@@ -70629,12 +70630,13 @@
     <p class=note>This will typically invoke scripted callbacks, 
     which eventually calls the <a href=#clean-up-after-running-a-callback>clean up after running a callback</a> steps,
     which call this <a href=#perform-a-microtask-checkpoint>perform a microtask checkpoint</a>
-    algorithm again, which is why we use the <a href=#running-mutation-observers>running mutation observers</a> flag to avoid
+    algorithm again, which is why we use the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag to avoid
     reentrancy.</p>
 
    </li>
 
-   <li><p>Let the <a href=#running-mutation-observers>running mutation observers</a> flag be false.</li>
+<!--CLEANUP-->
+   <li><p>Let the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag be false.</li>
 
   </ol><hr><p>When the user agent is to <dfn id=provide-a-stable-state>provide a stable state</dfn>, if any asynchronously-running
   algorithms are <dfn id=await-a-stable-state title="await a stable state">awaiting a stable state</dfn>, then the user
@@ -100773,6 +100775,9 @@
    <dt id=refsCSSVALUES>[CSSVALUES]</dt>
    <dd><cite><a href=http://dev.w3.org/csswg/css3-values/>CSS3 Values and Units</a></cite>, H. Lie, T. Atkins, E. Etemad. W3C.</dd>
 
+   <dt id=refsCUSTOM>[CUSTOM]</dt>
+   <dd><cite><a href=http://w3c.github.io/webcomponents/spec/custom/>Custom Elements</a></cite>, D. Glazkov. W3C.</dd>
+
    <dt id=refsDASH>[DASH]</dt>
    <dd><cite><a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=57623">Dynamic adaptive streaming over HTTP (DASH)</a></cite>. ISO.</dd>
 

Modified: index
===================================================================
--- index	2013-11-11 18:53:13 UTC (rev 8264)
+++ index	2013-11-11 22:10:16 UTC (rev 8265)
@@ -70230,8 +70230,8 @@
 
   <p class=note>The WebIDL specification also uses these algorithms. <a href=#refsWEBIDL>[WEBIDL]</a></p>
 
-  <hr><p>Each <a href=#unit-of-related-similar-origin-browsing-contexts>unit of related similar-origin browsing contexts</a> has a <dfn id=running-mutation-observers>running mutation
-  observers</dfn> flag, which must initially be false. It is used to prevent reentrant invocation of
+  <hr><!--CLEANUP--><p>Each <a href=#unit-of-related-similar-origin-browsing-contexts>unit of related similar-origin browsing contexts</a> has a <dfn id=performing-a-microtask-checkpoint>performing
+  a microtask checkpoint</dfn> flag, which must initially be false. It is used to prevent reentrant invocation of
   the algorithm to <a href=#concept-mo-invoke title=concept-mo-invoke>invoke <code>MutationObserver</code>
   objects</a>. For the purposes of <code><a href=#mutationobserver>MutationObserver</a></code> objects, each <a href=#unit-of-related-similar-origin-browsing-contexts>unit of
   related similar-origin browsing contexts</a> is a distinct <var title="MutationObserver
@@ -70610,11 +70610,12 @@
 
    <li><p>Return to the first step of the <a href=#event-loop>event loop</a>.</li>
 
-  </ol><hr><p>When a user agent is to <dfn id=perform-a-microtask-checkpoint>perform a microtask checkpoint</dfn>, if the <a href=#running-mutation-observers>running
-  mutation observers</a> flag is false, then the user agent must run the following steps:</p>
+  </ol><hr><!--CLEANUP--><p>When a user agent is to <dfn id=perform-a-microtask-checkpoint>perform a microtask checkpoint</dfn>, if the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag is false, then the user agent must run the following steps:</p>
 
-  <ol><li><p>Let the <a href=#running-mutation-observers>running mutation observers</a> flag be true.</li>
+  <ol><!--CLEANUP--><li><p>Let the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag be true.</li>
 
+   <li><p><dfn id=perform-a-custom-elements-checkpoint>Perform a custom elements checkpoint</dfn>. <a href=#refsCUSTOM>[CUSTOM]</a></li>
+
    <li><p><a href=#sort-the-tables-with-pending-sorts>Sort the tables with pending sorts</a>.</li>
 
    <li>
@@ -70629,12 +70630,13 @@
     <p class=note>This will typically invoke scripted callbacks, 
     which eventually calls the <a href=#clean-up-after-running-a-callback>clean up after running a callback</a> steps,
     which call this <a href=#perform-a-microtask-checkpoint>perform a microtask checkpoint</a>
-    algorithm again, which is why we use the <a href=#running-mutation-observers>running mutation observers</a> flag to avoid
+    algorithm again, which is why we use the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag to avoid
     reentrancy.</p>
 
    </li>
 
-   <li><p>Let the <a href=#running-mutation-observers>running mutation observers</a> flag be false.</li>
+<!--CLEANUP-->
+   <li><p>Let the <a href=#performing-a-microtask-checkpoint>performing a microtask checkpoint</a> flag be false.</li>
 
   </ol><hr><p>When the user agent is to <dfn id=provide-a-stable-state>provide a stable state</dfn>, if any asynchronously-running
   algorithms are <dfn id=await-a-stable-state title="await a stable state">awaiting a stable state</dfn>, then the user
@@ -100773,6 +100775,9 @@
    <dt id=refsCSSVALUES>[CSSVALUES]</dt>
    <dd><cite><a href=http://dev.w3.org/csswg/css3-values/>CSS3 Values and Units</a></cite>, H. Lie, T. Atkins, E. Etemad. W3C.</dd>
 
+   <dt id=refsCUSTOM>[CUSTOM]</dt>
+   <dd><cite><a href=http://w3c.github.io/webcomponents/spec/custom/>Custom Elements</a></cite>, D. Glazkov. W3C.</dd>
+
    <dt id=refsDASH>[DASH]</dt>
    <dd><cite><a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=57623">Dynamic adaptive streaming over HTTP (DASH)</a></cite>. ISO.</dd>
 

Modified: source
===================================================================
--- source	2013-11-11 18:53:13 UTC (rev 8264)
+++ source	2013-11-11 22:10:16 UTC (rev 8265)
@@ -78378,8 +78378,9 @@
 
   <hr>
 
-  <p>Each <span>unit of related similar-origin browsing contexts</span> has a <dfn>running mutation
-  observers</dfn> flag, which must initially be false. It is used to prevent reentrant invocation of
+<!--CLEANUP-->
+  <p>Each <span>unit of related similar-origin browsing contexts</span> has a <dfn>performing
+  a microtask checkpoint</dfn> flag, which must initially be false. It is used to prevent reentrant invocation of
   the algorithm to <span data-x="concept-mo-invoke">invoke <code>MutationObserver</code>
   objects</span>. For the purposes of <code>MutationObserver</code> objects, each <span>unit of
   related similar-origin browsing contexts</span> is a distinct <var data-x="MutationObserver
@@ -78806,13 +78807,16 @@
 
   <hr>
 
-  <p>When a user agent is to <dfn>perform a microtask checkpoint</dfn>, if the <span>running
-  mutation observers</span> flag is false, then the user agent must run the following steps:</p>
+<!--CLEANUP-->
+  <p>When a user agent is to <dfn>perform a microtask checkpoint</dfn>, if the <span>performing a microtask checkpoint</span> flag is false, then the user agent must run the following steps:</p>
 
   <ol>
 
-   <li><p>Let the <span>running mutation observers</span> flag be true.</p></li>
+<!--CLEANUP-->
+   <li><p>Let the <span>performing a microtask checkpoint</span> flag be true.</p></li>
 
+   <li><p><dfn>Perform a custom elements checkpoint</dfn>. <a href="#refsCUSTOM">[CUSTOM]</a></p></li>
+
    <li><p><span>Sort the tables with pending sorts</span>.</p></li>
 
    <li>
@@ -78827,12 +78831,13 @@
     <p class="note">This will typically invoke scripted callbacks, 
     which eventually calls the <span>clean up after running a callback</span> steps,
     which call this <span>perform a microtask checkpoint</span>
-    algorithm again, which is why we use the <span>running mutation observers</span> flag to avoid
+    algorithm again, which is why we use the <span>performing a microtask checkpoint</span> flag to avoid
     reentrancy.</p>
 
    </li>
 
-   <li><p>Let the <span>running mutation observers</span> flag be false.</p></li>
+<!--CLEANUP-->
+   <li><p>Let the <span>performing a microtask checkpoint</span> flag be false.</p></li>
 
   </ol>
 
@@ -112490,6 +112495,9 @@
    <dt id="refsCSSVALUES">[CSSVALUES]</dt>
    <dd><cite><a href="http://dev.w3.org/csswg/css3-values/">CSS3 Values and Units</a></cite>, H. Lie, T. Atkins, E. Etemad. W3C.</dd>
 
+   <dt id="refsCUSTOM">[CUSTOM]</dt>
+   <dd><cite><a href="http://w3c.github.io/webcomponents/spec/custom/">Custom Elements</a></cite>, D. Glazkov. W3C.</dd>
+
    <dt id="refsDASH">[DASH]</dt>
    <dd><cite><a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=57623">Dynamic adaptive streaming over HTTP (DASH)</a></cite>. ISO.</dd>
 




More information about the Commit-Watchers mailing list