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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
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:
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 25bbf904e1035ad9b6235fc16d029ff754373fa4..944d6e6dc1088a34428e465730c71cb21b44465b 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -12034,14 +12034,39 @@ class Event extends Interceptor native "Event" {
// To suppress missing implicit constructor warnings.
factory Event._() { throw new UnsupportedError("Not supported"); }
+ /**
+ * This event is being handled by the event target.
+ *
+ * ## Other resources
+ *
+ * * [Target phase] (http://www.w3.org/TR/DOM-Level-3-Events/#target-phase)
Kathy Walrath 2013/11/18 22:13:41 Global (but not a big deal): - It seems a little
+ * from W3C.
+ */
@DomName('Event.AT_TARGET')
@DocsEditable()
static const int AT_TARGET = 2;
+ /**
+ * This event is bubbling up through the target's ancestors.
+ *
+ * ## Other resources
+ *
+ * * [Bubble phase] (http://www.w3.org/TR/DOM-Level-3-Events/#bubble-phase)
+ * from W3C.
+ */
@DomName('Event.BUBBLING_PHASE')
@DocsEditable()
static const int BUBBLING_PHASE = 3;
+ /**
+ * This event is propagating through the target's ancestors, starting from the
+ * document.
+ *
+ * ## Other resources
+ *
+ * * [Bubble phase] (http://www.w3.org/TR/DOM-Level-3-Events/#bubble-phase)
Kathy Walrath 2013/11/18 22:13:41 Bubble -> Capturing (in the text and in the URL)
+ * from W3C.
+ */
@DomName('Event.CAPTURING_PHASE')
@DocsEditable()
static const int CAPTURING_PHASE = 1;
@@ -12054,6 +12079,14 @@ class Event extends Interceptor native "Event" {
@DocsEditable()
final bool cancelable;
+ /**
+ * Access to the system's clipboard data during copy, cut, and paste events.
+ *
+ * ## Other resources
+ *
+ * * [clipboardData specification]
+ * (http://www.w3.org/TR/clipboard-apis/#attributes) from W3C.
+ */
@DomName('Event.clipboardData')
@DocsEditable()
@SupportedBrowser(SupportedBrowser.CHROME)
@@ -12081,6 +12114,15 @@ class Event extends Interceptor native "Event" {
@DocsEditable()
final int eventPhase;
+ /**
+ * This event's path, taking into account shadow DOM.
+ *
+ * ## Other resources
+ *
+ * * [Shadow DOM extensions to Event]
+ * (http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-event) from
+ * W3C.
+ */
@DomName('Event.path')
@DocsEditable()
// https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html#extensions-to-event
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698