Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 7a84855

Browse files
author
Eduardo Fullea
committed
removing MessagingRequest
1 parent 7c4b13d commit 7a84855

File tree

1 file changed

+0
-89
lines changed

1 file changed

+0
-89
lines changed

index.html

Lines changed: 0 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,95 +1274,6 @@ <h2>Event handlers</h2>
12741274

12751275
</section>
12761276

1277-
<!------------------------ Interface MessagingRequest ------------------------>
1278-
<section>
1279-
<h2><a>MessagingRequest</a> Interface</h2>
1280-
<p>The <a>MessagingRequest</a> interface represents an ongoing operation. It
1281-
provides callbacks that are called when the operation completes, as well as a
1282-
reference to the operation's result. A method that initiates an operation
1283-
(e.g. delete message via the <code>delete</code> method in the
1284-
<code>Messaging</code> interface) MUST return a MessagingRequest object that
1285-
can be used to monitor the progress of that operation.
1286-
<dl title="[NoInterfaceObject] interface MessagingRequest"
1287-
class="idl">
1288-
<dt>readonly attribute DOMString readyState</dt>
1289-
<dd>Indicates the state of the request, with possible string values
1290-
'processing',if the request has been made and it is progressing, or 'done',
1291-
if the request has been already completed.</dd>
1292-
1293-
<dt>readonly attribute DOMError? error</dt>
1294-
<dd>An error that occured during the request. Errors are as defined in
1295-
[[!DOM4]].</dd>
1296-
1297-
<dt>readonly attribute any? result</dt>
1298-
<dd>Indicates the result of the request. The type depends on the sort of
1299-
request, and is specified in the description of each method that returns a
1300-
<code>MessagingRequest</code> object, e.g. <code>delete</code> method of the
1301-
<code>Messaging</code> object.</dd>
1302-
1303-
<dt class="no-docs">
1304-
attribute EventHandler onprogress
1305-
</dt>
1306-
<dd></dd>
1307-
1308-
<dt class="no-docs">
1309-
attribute EventHandler onsuccess
1310-
</dt>
1311-
<dd></dd>
1312-
1313-
<dt class="no-docs">
1314-
attribute EventHandler onerror
1315-
</dt>
1316-
<dd></dd>
1317-
</dl>
1318-
1319-
<section>
1320-
<h2>Event handlers</h2>
1321-
<p>
1322-
<p>The following are the <a class="internalDFN"
1323-
href="#dfn-eventhandler">event handlers</a> (and their corresponding <a
1324-
class="internalDFN" href="#dfn-eventtypes">event types</a>) that MUST be
1325-
supported as attributes by the <a>MessagingRequest</a> object.
1326-
1327-
<table class="simple">
1328-
<thead>
1329-
<tr>
1330-
<th>event handler</th>
1331-
<th>event name</th>
1332-
<th>event type</th>
1333-
<th>short description</th>
1334-
</tr>
1335-
</thead>
1336-
<tbody>
1337-
<tr>
1338-
<td><strong><code>onprogress</code></strong></td>
1339-
<td><code><dfn>progress</dfn></code></td>
1340-
<td><a><code>ProgressEvent</code></a></td>
1341-
<td>handles progress events related to MMS sending/fetching
1342-
operations</td>
1343-
</tr>
1344-
<tr>
1345-
<td><strong><code>onsuccess</code></strong></td>
1346-
<td><code><dfn>success</dfn></code></td>
1347-
<td><a><code>Event</code></a></td>
1348-
<td>handles success of the request</td>
1349-
</tr>
1350-
<tr>
1351-
<td><strong><code>onerror</code></strong></td>
1352-
<td><code><dfn>error</dfn></code></td>
1353-
<td><a><code>Event</code></a></td>
1354-
<td>handles failure of the request</td>
1355-
</tr>
1356-
</tbody>
1357-
</table>
1358-
</section>
1359-
</section>
1360-
1361-
<p class="issue">
1362-
Use of DOMRequest / DOMFuture to be assessed as part of a broader discussion
1363-
in W3C SysApps.
1364-
</p>
1365-
13661277

13671278
<!------------------------ Interface SmsMessage ------------------------------>
13681279
<section>

0 commit comments

Comments
 (0)