Remove unnecessary task queuing
authorTakeshi Yoshino <tyoshino@google.com>
Thu, 30 Jan 2014 15:25:53 +0900
changeset 155 841bc807e839
parent 154 e5f35a6d88fe
child 156 a0e5ee8be17c
Remove unnecessary task queuing
Overview.htm
--- a/Overview.htm	Thu Jan 30 15:23:12 2014 +0900
+++ b/Overview.htm	Thu Jan 30 15:25:53 2014 +0900
@@ -777,37 +777,11 @@
 			</p>
 
 			<p>
-				When <a>dataSink</a> acknowledges the <a>write abort</a>, run the steps below:
-
-				<ol>
-					<li>
-						<dl class="switch">
-							<dt>If in the event loop</dt>
-							<dd>Run the rest of these steps</dd>
-							<dt>Otherwise</dt>
-							<dd>Queue a task which runs the rest of these steps</dd>
-						</dl>
-					</li>
-
-					<li>Fulfill <var>writeAbortPromise</var> with <code>undefined</code></li>
-				</ol>
+				When <a>dataSink</a> acknowledges the <a>write abort</a>, fulfill <var>writeAbortPromise</var> with <code>undefined</code>
 			</p>
 
 			<p>
-				When <a>dataSink</a> notifies of failure of the <a>write abort</a> signal with <var>reason</var>, run the steps below:
-
-				<ol>
-					<li>
-						<dl class="switch">
-							<dt>If in the event loop</dt>
-							<dd>Run the rest of these steps</dd>
-							<dt>Otherwise</dt>
-							<dd>Queue a task which runs the rest of these steps</dd>
-						</dl>
-					</li>
-
-					<li>Reject <var>writeAbortPromise</var> with <var>reason</var></li>
-				</ol>
+				When <a>dataSink</a> notifies of failure of the <a>write abort</a> signal with <var>reason</var>, reject <var>writeAbortPromise</var> with <var>reason</var>
 			</p>
 
 			<p>