- From: Dominique Hazael-Massieux via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 25 May 2011 16:53:49 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/contacts
In directory hutz:/tmp/cvs-serv32668
Modified Files:
Overview.html
Log Message:
bug fix: successCallback can't be null, invoking find with a null successCallback triggers a TypeError per Web IDL
Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/contacts/Overview.html,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -d -r1.136 -r1.137
--- Overview.html 25 May 2011 16:24:06 -0000 1.136
+++ Overview.html 25 May 2011 16:53:47 -0000 1.137
@@ -345,7 +345,7 @@
<li>
Let <var>errorCallback</var> be the callback indicated by the method's third argument, if any, or null otherwise.
</li>
- <li>If <var>successCallback</var> is null, abort these steps.</li>
+ <li id="ta-ai" class="product-ua">If <var>successCallback</var> is null, then throw a TypeError (as defined in [[WEBIDL]]).</li>
<li class="product-ua" id="ta-ag">
If there is a <a>task</a> from the <a>device task source</a> in one of the <a>task
queues</a> (e.g. an existing <code>find()</code> operation is still pending a response), run these
Received on Wednesday, 25 May 2011 16:53:50 UTC