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

Side by Side Diff: tools/dom/docs/docs.json

Issue 63883006: Fill in blanks for Event docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "dart.dom.html": { 2 "dart.dom.html": {
3 "AbstractWorker": { 3 "AbstractWorker": {
4 "members": { 4 "members": {
5 "errorEvent": [ 5 "errorEvent": [
6 "/**", 6 "/**",
7 " * Static factory designed to expose `error` events to event", 7 " * Static factory designed to expose `error` events to event",
8 " * handlers that are not necessarily instances of [AbstractWorker]. ", 8 " * handlers that are not necessarily instances of [AbstractWorker]. ",
9 " *", 9 " *",
10 " * See [EventStreamProvider] for usage information.", 10 " * See [EventStreamProvider] for usage information.",
(...skipping 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 " * * [Pointer lock and first person shooter controls]", 1440 " * * [Pointer lock and first person shooter controls]",
1441 " * (http://www.html5rocks.com/en/tutorials/pointerlock/intro/) tuto rial from", 1441 " * (http://www.html5rocks.com/en/tutorials/pointerlock/intro/) tuto rial from",
1442 " * HTML5Rocks.", 1442 " * HTML5Rocks.",
1443 " *", 1443 " *",
1444 " * * [Pointer lock specification]", 1444 " * * [Pointer lock specification]",
1445 " * (http://www.w3.org/TR/pointerlock/) from W3C.", 1445 " * (http://www.w3.org/TR/pointerlock/) from W3C.",
1446 " */" 1446 " */"
1447 ] 1447 ]
1448 } 1448 }
1449 }, 1449 },
1450 "Event": {
1451 "members": {
1452 "AT_TARGET": [
1453 "/**",
1454 " * This event is being handled by the event target.",
1455 " *",
1456 " * ## Other resources",
1457 " *",
1458 " * * [Target phase] (http://www.w3.org/TR/DOM-Level-3-Events/#targe t-phase)",
1459 " * from W3C.",
1460 " */"
1461 ],
1462 "BUBBLING_PHASE": [
1463 "/**",
1464 " * This event is bubbling up through the target's ancestors.",
1465 " *",
1466 " * ## Other resources",
1467 " *",
1468 " * * [Bubble phase] (http://www.w3.org/TR/DOM-Level-3-Events/#bubbl e-phase)",
1469 " * from W3C.",
1470 " */"
1471 ],
1472 "CAPTURING_PHASE": [
1473 "/**",
1474 " * This event is propagating through the target's ancestors, starti ng from the",
1475 " * document.",
1476 " *",
1477 " * ## Other resources",
1478 " *",
1479 " * * [Bubble phase] (http://www.w3.org/TR/DOM-Level-3-Events/#bubbl e-phase)",
1480 " * from W3C.",
1481 " */"
1482 ],
1483 "clipboardData": [
1484 "/**",
1485 " * Access to the system's clipboard data during copy, cut, and past e events.",
1486 " *",
1487 " * ## Other resources",
1488 " *",
1489 " * * [clipboardData specification]",
1490 " * (http://www.w3.org/TR/clipboard-apis/#attributes) from W3C.",
1491 " */"
1492 ],
1493 "path": [
1494 "/**",
1495 " * This event's path, taking into account shadow DOM.",
1496 " *",
1497 " * ## Other resources",
1498 " *",
1499 " * * [Shadow DOM extensions to Event]",
1500 " * (http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-e vent) from",
1501 " * W3C.",
1502 " */"
1503 ]
1504 }
1505 },
1450 "EventSource": { 1506 "EventSource": {
1451 "members": { 1507 "members": {
1452 "errorEvent": [ 1508 "errorEvent": [
1453 "/**", 1509 "/**",
1454 " * Static factory designed to expose `error` events to event", 1510 " * Static factory designed to expose `error` events to event",
1455 " * handlers that are not necessarily instances of [EventSource].", 1511 " * handlers that are not necessarily instances of [EventSource].",
1456 " *", 1512 " *",
1457 " * See [EventStreamProvider] for usage information.", 1513 " * See [EventStreamProvider] for usage information.",
1458 " */" 1514 " */"
1459 ], 1515 ],
(...skipping 3724 matching lines...) Expand 10 before | Expand all | Expand 10 after
5184 " *", 5240 " *",
5185 " * [oldVersion] should match the database's current [version] exact ly.", 5241 " * [oldVersion] should match the database's current [version] exact ly.",
5186 " *", 5242 " *",
5187 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 5243 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
5188 " */" 5244 " */"
5189 ] 5245 ]
5190 } 5246 }
5191 } 5247 }
5192 } 5248 }
5193 } 5249 }
OLDNEW
« sdk/lib/html/dart2js/html_dart2js.dart ('K') | « 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