Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: tools/dom/docs/docs.json

Issue 12186024: Finished porting code from the old html-json docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/docs/docs.json
diff --git a/tools/dom/docs/docs.json b/tools/dom/docs/docs.json
index cbc8a7dae1bdb0849f31919bcba8cd05b7951686..143454fda2e11210e164470270cd769b628cdce0 100644
--- a/tools/dom/docs/docs.json
+++ b/tools/dom/docs/docs.json
@@ -250,6 +250,20 @@
" */"
]
},
+ "HTMLMenuElement": {
+ "comment": [
+ "/**",
+ " * An HTML <menu> element.",
+ " *",
+ " * A <menu> element represents an unordered list of menu commands.",
+ " *",
+ " * See also:",
+ " *",
+ " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Element/menu) from MDN.",
+ " * * [Menu Element](http://www.w3.org/TR/html5/the-menu-element.html#the-menu-element) from the W3C.",
+ " */"
+ ]
+ },
"XMLHttpRequest": {
"members": {
"abort": [
@@ -281,6 +295,51 @@
" * for a list of common response headers.",
" */"
],
+ "onabort": [
+ "/**",
+ " * Event listeners to be notified when request has been aborted,",
+ " * generally due to calling `httpRequest.abort()`.",
+ " */"
+ ],
+ "onerror": [
+ "/**",
+ " * Event listeners to be notified when a request has failed, such as when a",
+ " * cross-domain error occurred or the file wasn't found on the server.",
+ " */"
+ ],
+ "onload": [
+ "/**",
+ " * Event listeners to be notified once the request has completed",
+ " * *successfully*.",
+ " */"
+ ],
+ "onloadend": [
+ "/**",
+ " * Event listeners to be notified once the request has completed (on",
+ " * either success or failure).",
+ " */"
+ ],
+ "onloadstart": [
+ "/**",
+ " * Event listeners to be notified when the request starts, once",
+ " * `httpRequest.send()` has been called.",
+ " */"
+ ],
+ "onprogress": [
+ "/**",
+ " * Event listeners to be notified when data for the request",
+ " * is being sent or loaded.",
+ " *",
+ " * Progress events are fired every 50ms or for every byte transmitted,",
+ " * whichever is less frequent.",
+ " */"
+ ],
+ "onreadystatechange": [
+ "/**",
+ " * Event listeners to be notified every time the [HttpRequest]",
+ " * object's `readyState` changes values.",
+ " */"
+ ],
"open": [
"/**",
" * Specify the desired `url`, and `method` to use in making the request.",
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698