Skip to content

Commit f3fec29

Browse files
committed
Remove issue note about execution ready flag
1 parent d2c327c commit f3fec29

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

docs/index.bs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,8 +1023,6 @@ spec: rfc7231; urlPrefix: https://tools.ietf.org/html/rfc7231
10231023
<h4 id="client-reserved">{{Client/reserved}}</h4>
10241024

10251025
<p>The <dfn attribute for="Client"><code>reserved</code></dfn> attribute <em class="rfc2119" title="MUST">must</em> return the <a>context object</a>'s associated <a for="Client">reserved state</a>.</p>
1026-
1027-
<p class="issue">Defining the execution ready flag is a work in progress. See <a href="https://github.com/whatwg/html/pull/2004">the pull request to HTML</a>.</p>
10281026
</section>
10291027

10301028
<section algorithm="client-postmessage">

docs/index.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,8 @@
969969
/* Reverse color scheme */
970970
color: black;
971971
border-color: #3980B5;
972+
border-bottom-width: 3px !important;
973+
margin-bottom: 0px !important;
972974
}
973975
.toc a:visited {
974976
border-color: #054572;
@@ -1422,7 +1424,7 @@
14221424
<div class="head">
14231425
<p data-fill-with="logo"><a class="logo" href="http://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2016/logos/W3C" width="72"> </a> </p>
14241426
<h1 class="p-name no-ref" id="title">Service Workers Nightly</h1>
1425-
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Editor’s Draft, <time class="dt-updated" datetime="2016-11-09">9 November 2016</time></span></h2>
1427+
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Editor’s Draft, <time class="dt-updated" datetime="2016-11-10">10 November 2016</time></span></h2>
14261428
<div data-fill-with="spec-metadata">
14271429
<dl>
14281430
<dt>This version:
@@ -2412,7 +2414,6 @@ <h4 class="heading settled" data-level="4.2.2" id="client-id"><span class="secno
24122414
<section>
24132415
<h4 class="heading settled" data-level="4.2.3" id="client-reserved"><span class="secno">4.2.3. </span><span class="content"><code class="idl"><a data-link-type="idl" href="#dom-client-reserved" id="ref-for-dom-client-reserved-2">reserved</a></code></span><a class="self-link" href="#client-reserved"></a></h4>
24142416
<p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Client" data-dfn-type="attribute" data-export="" id="dom-client-reserved"><code>reserved</code></dfn> attribute <em class="rfc2119" title="MUST">must</em> return the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#context-object">context object</a>’s associated <a data-link-type="dfn" href="#client-reserved-state" id="ref-for-client-reserved-state-1">reserved state</a>.</p>
2415-
<p class="issue" id="issue-9a963f69"><a class="self-link" href="#issue-9a963f69"></a>Defining the execution ready flag is a work in progress. See <a href="https://github.com/whatwg/html/pull/2004">the pull request to HTML</a>.</p>
24162417
</section>
24172418
<section class="algorithm" data-algorithm="client-postmessage">
24182419
<h4 class="heading settled" data-level="4.2.4" id="client-postmessage"><span class="secno">4.2.4. </span><span class="content"><code class="idl"><a data-link-type="idl" href="#dom-client-postmessage" id="ref-for-dom-client-postmessage-2">postMessage(message, transfer)</a></code></span><a class="self-link" href="#client-postmessage"></a></h4>
@@ -2629,7 +2630,7 @@ <h4 class="heading settled" data-level="4.3.2" id="clients-getall"><span class="
26292630
<li>
26302631
If <var>options</var>.<code class="idl"><a data-link-type="idl" href="#dom-clientqueryoptions-includereserved" id="ref-for-dom-clientqueryoptions-includereserved-1">includeReserved</a></code> is false, then:
26312632
<ol>
2632-
<li>If <var>client</var>’s <a data-link-type="dfn">execution ready flag</a> is unset, continue to the next iteration of the loop.
2633+
<li>If <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-execution-ready-flag">execution ready flag</a> is unset, continue to the next iteration of the loop.
26332634
</ol>
26342635
<li>Add <var>client</var> to <var>targetClients</var>.
26352636
</ol>
@@ -5082,7 +5083,7 @@ <h3 class="heading settled" id="create-client-algorithm"><span class="content">C
50825083
<ol>
50835084
<li>Let <var>clientObject</var> be a new <code class="idl"><a data-link-type="idl" href="#client" id="ref-for-client-13">Client</a></code> object.
50845085
<li>Set <var>clientObject</var>’s <a data-link-type="dfn" href="#client-service-worker-client" id="ref-for-client-service-worker-client-15">service worker client</a> to <var>client</var>.
5085-
<li>Set <var>clientObject</var>’s <a data-link-type="dfn" href="#client-reserved-state" id="ref-for-client-reserved-state-2">reserved state</a> to true if <var>client</var>’s <a data-link-type="dfn">execution ready flag</a> is unset, and false otherwise.
5086+
<li>Set <var>clientObject</var>’s <a data-link-type="dfn" href="#client-reserved-state" id="ref-for-client-reserved-state-2">reserved state</a> to true if <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-execution-ready-flag">execution ready flag</a> is unset, and false otherwise.
50865087
<li>Return <var>clientObject</var>.
50875088
</ol>
50885089
</section>
@@ -5941,6 +5942,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla
59415942
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes">event handler idl attribute</a>
59425943
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#event-loop">event loop</a>
59435944
<li><a href="https://html.spec.whatwg.org/multipage/browsers.html#exceptions-enabled">exceptions enabled flag</a>
5945+
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-execution-ready-flag">execution ready flag</a>
59445946
<li><a href="https://html.spec.whatwg.org/multipage/semantics.html#external-resource-link">external resource link</a>
59455947
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-classic-worker-script">fetch a classic worker script</a>
59465948
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-module-worker-script-tree">fetch a module worker script tree</a>
@@ -6382,7 +6384,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I
63826384
</pre>
63836385
<h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2>
63846386
<div style="counter-reset:issue">
6385-
<div class="issue">Defining the execution ready flag is a work in progress. See <a href="https://github.com/whatwg/html/pull/2004">the pull request to HTML</a>.<a href="#issue-9a963f69"> ↵ </a></div>
63866387
<div class="issue">The response’s cache state concept had been removed from fetch. The fetch issue <a href="https://github.com/whatwg/fetch/issues/376">#376</a> tracks the request to restore the concept or add some similar way to check this state.<a href="#issue-3c7457a0"> ↵ </a></div>
63876388
</div>
63886389
<aside class="dfn-panel" data-for="dfn-service-worker">

docs/v1/index.bs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,8 +1018,6 @@ spec: rfc7231; urlPrefix: https://tools.ietf.org/html/rfc7231
10181018
<h4 id="client-reserved">{{Client/reserved}}</h4>
10191019

10201020
<p>The <dfn attribute for="Client"><code>reserved</code></dfn> attribute <em class="rfc2119" title="MUST">must</em> return the <a>context object</a>'s associated <a for="Client">reserved state</a>.</p>
1021-
1022-
<p class="issue">Defining the execution ready flag is a work in progress. See <a href="https://github.com/whatwg/html/pull/2004">the pull request to HTML</a>.</p>
10231021
</section>
10241022

10251023
<section algorithm="client-postmessage">

docs/v1/index.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,8 @@
969969
/* Reverse color scheme */
970970
color: black;
971971
border-color: #3980B5;
972+
border-bottom-width: 3px !important;
973+
margin-bottom: 0px !important;
972974
}
973975
.toc a:visited {
974976
border-color: #054572;
@@ -1422,7 +1424,7 @@
14221424
<div class="head">
14231425
<p data-fill-with="logo"><a class="logo" href="http://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2016/logos/W3C" width="72"> </a> </p>
14241426
<h1 class="p-name no-ref" id="title">Service Workers 1</h1>
1425-
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Editor’s Draft, <time class="dt-updated" datetime="2016-11-09">9 November 2016</time></span></h2>
1427+
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Editor’s Draft, <time class="dt-updated" datetime="2016-11-10">10 November 2016</time></span></h2>
14261428
<div data-fill-with="spec-metadata">
14271429
<dl>
14281430
<dt>This version:
@@ -2394,7 +2396,6 @@ <h4 class="heading settled" data-level="4.2.2" id="client-id"><span class="secno
23942396
<section>
23952397
<h4 class="heading settled" data-level="4.2.3" id="client-reserved"><span class="secno">4.2.3. </span><span class="content"><code class="idl"><a data-link-type="idl" href="#dom-client-reserved" id="ref-for-dom-client-reserved-2">reserved</a></code></span><a class="self-link" href="#client-reserved"></a></h4>
23962398
<p>The <dfn class="dfn-paneled idl-code" data-dfn-for="Client" data-dfn-type="attribute" data-export="" id="dom-client-reserved"><code>reserved</code></dfn> attribute <em class="rfc2119" title="MUST">must</em> return the <a data-link-type="dfn" href="https://dom.spec.whatwg.org/#context-object">context object</a>’s associated <a data-link-type="dfn" href="#client-reserved-state" id="ref-for-client-reserved-state-1">reserved state</a>.</p>
2397-
<p class="issue" id="issue-9a963f69"><a class="self-link" href="#issue-9a963f69"></a>Defining the execution ready flag is a work in progress. See <a href="https://github.com/whatwg/html/pull/2004">the pull request to HTML</a>.</p>
23982399
</section>
23992400
<section class="algorithm" data-algorithm="client-postmessage">
24002401
<h4 class="heading settled" data-level="4.2.4" id="client-postmessage"><span class="secno">4.2.4. </span><span class="content"><code class="idl"><a data-link-type="idl" href="#dom-client-postmessage" id="ref-for-dom-client-postmessage-2">postMessage(message, transfer)</a></code></span><a class="self-link" href="#client-postmessage"></a></h4>
@@ -2611,7 +2612,7 @@ <h4 class="heading settled" data-level="4.3.2" id="clients-getall"><span class="
26112612
<li>
26122613
If <var>options</var>.<code class="idl"><a data-link-type="idl" href="#dom-clientqueryoptions-includereserved" id="ref-for-dom-clientqueryoptions-includereserved-1">includeReserved</a></code> is false, then:
26132614
<ol>
2614-
<li>If <var>client</var>’s <a data-link-type="dfn">execution ready flag</a> is unset, continue to the next iteration of the loop.
2615+
<li>If <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-execution-ready-flag">execution ready flag</a> is unset, continue to the next iteration of the loop.
26152616
</ol>
26162617
<li>Add <var>client</var> to <var>targetClients</var>.
26172618
</ol>
@@ -4661,7 +4662,7 @@ <h3 class="heading settled" id="create-client-algorithm"><span class="content">C
46614662
<ol>
46624663
<li>Let <var>clientObject</var> be a new <code class="idl"><a data-link-type="idl" href="#client" id="ref-for-client-13">Client</a></code> object.
46634664
<li>Set <var>clientObject</var>’s <a data-link-type="dfn" href="#client-service-worker-client" id="ref-for-client-service-worker-client-15">service worker client</a> to <var>client</var>.
4664-
<li>Set <var>clientObject</var>’s <a data-link-type="dfn" href="#client-reserved-state" id="ref-for-client-reserved-state-2">reserved state</a> to true if <var>client</var>’s <a data-link-type="dfn">execution ready flag</a> is unset, and false otherwise.
4665+
<li>Set <var>clientObject</var>’s <a data-link-type="dfn" href="#client-reserved-state" id="ref-for-client-reserved-state-2">reserved state</a> to true if <var>client</var>’s <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-execution-ready-flag">execution ready flag</a> is unset, and false otherwise.
46654666
<li>Return <var>clientObject</var>.
46664667
</ol>
46674668
</section>
@@ -5448,6 +5449,7 @@ <h3 class="no-num no-ref heading settled" id="index-defined-elsewhere"><span cla
54485449
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-idl-attributes">event handler idl attribute</a>
54495450
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#event-loop">event loop</a>
54505451
<li><a href="https://html.spec.whatwg.org/multipage/browsers.html#exceptions-enabled">exceptions enabled flag</a>
5452+
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-execution-ready-flag">execution ready flag</a>
54515453
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-classic-worker-script">fetch a classic worker script</a>
54525454
<li><a href="https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-module-worker-script-tree">fetch a module worker script tree</a>
54535455
<li><a href="https://html.spec.whatwg.org/multipage/interaction.html#focusing-steps">focusing steps</a>
@@ -5843,7 +5845,6 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I
58435845
</pre>
58445846
<h2 class="no-num no-ref heading settled" id="issues-index"><span class="content">Issues Index</span><a class="self-link" href="#issues-index"></a></h2>
58455847
<div style="counter-reset:issue">
5846-
<div class="issue">Defining the execution ready flag is a work in progress. See <a href="https://github.com/whatwg/html/pull/2004">the pull request to HTML</a>.<a href="#issue-9a963f69"> ↵ </a></div>
58475848
<div class="issue">The response’s cache state concept had been removed from fetch. The fetch issue <a href="https://github.com/whatwg/fetch/issues/376">#376</a> tracks the request to restore the concept or add some similar way to check this state.<a href="#issue-3c7457a0"> ↵ </a></div>
58485849
</div>
58495850
<aside class="dfn-panel" data-for="dfn-service-worker">

0 commit comments

Comments
 (0)