Skip to content

Commit

Permalink
[e] (0) more things waiting on WebIDL
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2325 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 13, 2008
1 parent 901b8fd commit 0af1f67
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 6 additions & 3 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -31558,7 +31558,10 @@ menu li:not(:first-child)::before { content: ' | '; }</pre>
attribute <span>EventListener</span> <a href=#handler-onstorage title=handler-onstorage>onstorage</a>;
attribute <span>EventListener</span> <a href=#handler-onsubmit title=handler-onsubmit>onsubmit</a>;
attribute <span>EventListener</span> <a href=#handler-onunload title=handler-onunload>onunload</a>;
};</pre>
};

// <dfn class=XXX id=voidcallback>VoidCallback</dfn> waiting on WebIDL
</pre>

<!-- XXX http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_window.asp
http://www.mozilla.org/docs/dom/domref/dom_window_ref.html
Expand Down Expand Up @@ -36709,10 +36712,10 @@ have a variable and unknowable number of literals coming:
<pre class=idl>interface <dfn id=database>Database</dfn> {
void <a href=#dom-database-transaction title=dom-database-transaction>transaction</a>(in <a href=#sqltransactioncallback>SQLTransactionCallback</a> callback);
void <a href=#dom-database-transaction title=dom-database-transaction>transaction</a>(in <a href=#sqltransactioncallback>SQLTransactionCallback</a> callback, in <a href=#sqltransactionerrorcallback>SQLTransactionErrorCallback</a> errorCallback);
void <a href=#dom-database-transaction title=dom-database-transaction>transaction</a>(in <a href=#sqltransactioncallback>SQLTransactionCallback</a> callback, in <a href=#sqltransactionerrorcallback>SQLTransactionErrorCallback</a> errorCallback, in <span>VoidCallback</span> successCallback);
void <a href=#dom-database-transaction title=dom-database-transaction>transaction</a>(in <a href=#sqltransactioncallback>SQLTransactionCallback</a> callback, in <a href=#sqltransactionerrorcallback>SQLTransactionErrorCallback</a> errorCallback, in <a href=#voidcallback>VoidCallback</a> successCallback);

readonly attribute DOMString <a href=#dom-database-version title=dom-database-version>version</a>;
void <a href=#dom-database-changeversion title=dom-database-changeVersion>changeVersion</a>(in DOMString oldVersion, in DOMString newVersion, in <a href=#sqltransactioncallback>SQLTransactionCallback</a> callback, in <a href=#sqltransactionerrorcallback>SQLTransactionErrorCallback</a> errorCallback, in <span>VoidCallback</span> successCallback);
void <a href=#dom-database-changeversion title=dom-database-changeVersion>changeVersion</a>(in DOMString oldVersion, in DOMString newVersion, in <a href=#sqltransactioncallback>SQLTransactionCallback</a> callback, in <a href=#sqltransactionerrorcallback>SQLTransactionErrorCallback</a> errorCallback, in <a href=#voidcallback>VoidCallback</a> successCallback);
};

interface <dfn id=sqltransactioncallback>SQLTransactionCallback</dfn> {
Expand Down
5 changes: 4 additions & 1 deletion source
Original file line number Diff line number Diff line change
Expand Up @@ -35820,7 +35820,10 @@ menu li:not(:first-child)::before { content: ' | '; }</pre>
attribute <span>EventListener</span> <span title="handler-onstorage">onstorage</span>;
attribute <span>EventListener</span> <span title="handler-onsubmit">onsubmit</span>;
attribute <span>EventListener</span> <span title="handler-onunload">onunload</span>;
};</pre>
};

// <dfn class="XXX">VoidCallback</dfn> waiting on WebIDL
</pre>

<!-- XXX http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_window.asp
http://www.mozilla.org/docs/dom/domref/dom_window_ref.html
Expand Down

0 comments on commit 0af1f67

Please sign in to comment.