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

Unified Diff: tools/dom/doc/interface/Event.dartdoc

Issue 11961047: Remove the old hand-written HTML doc format, which has not worked for months. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « tools/dom/doc/interface/Element.dartdoc ('k') | tools/dom/doc/interface/EventTarget.dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/doc/interface/Event.dartdoc
diff --git a/tools/dom/doc/interface/Event.dartdoc b/tools/dom/doc/interface/Event.dartdoc
deleted file mode 100644
index eee2da6f6ce142e8200a65ff23b126d6be75bab8..0000000000000000000000000000000000000000
--- a/tools/dom/doc/interface/Event.dartdoc
+++ /dev/null
@@ -1,106 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-/// @domName Event
-abstract class Event {
-
- // In JS, canBubble and cancelable are technically required parameters to
- // init*Event. In practice, though, if they aren't provided they simply
- // default to false (since that's Boolean(undefined)).
- //
- // Contrary to JS, we default canBubble and cancelable to true, since that's
- // what people want most of the time anyway.
- factory Event(String type, [bool canBubble = true, bool cancelable = true]) =>
- _EventFactoryProvider.createEvent(type, canBubble, cancelable);
-
- static const int AT_TARGET = 2;
-
- static const int BLUR = 8192;
-
- static const int BUBBLING_PHASE = 3;
-
- static const int CAPTURING_PHASE = 1;
-
- static const int CHANGE = 32768;
-
- static const int CLICK = 64;
-
- static const int DBLCLICK = 128;
-
- static const int DRAGDROP = 2048;
-
- static const int FOCUS = 4096;
-
- static const int KEYDOWN = 256;
-
- static const int KEYPRESS = 1024;
-
- static const int KEYUP = 512;
-
- static const int MOUSEDOWN = 1;
-
- static const int MOUSEDRAG = 32;
-
- static const int MOUSEMOVE = 16;
-
- static const int MOUSEOUT = 8;
-
- static const int MOUSEOVER = 4;
-
- static const int MOUSEUP = 2;
-
- static const int NONE = 0;
-
- static const int SELECT = 16384;
-
- /** @domName Event.bubbles */
- abstract bool get bubbles;
-
- /** @domName Event.cancelBubble */
- bool cancelBubble;
-
- /** @domName Event.cancelable */
- abstract bool get cancelable;
-
- /** @domName Event.clipboardData */
- abstract Clipboard get clipboardData;
-
- /** @domName Event.currentTarget */
- abstract EventTarget get currentTarget;
-
- /** @domName Event.defaultPrevented */
- abstract bool get defaultPrevented;
-
- /** @domName Event.eventPhase */
- abstract int get eventPhase;
-
- /** @domName Event.returnValue */
- bool returnValue;
-
- /** @domName Event.srcElement */
- abstract EventTarget get srcElement;
-
- /** @domName Event.target */
- abstract EventTarget get target;
-
- /** @domName Event.timeStamp */
- abstract int get timeStamp;
-
- /** @domName Event.type */
- abstract String get type;
-
- /** @domName Event.initEvent */
- void $dom_initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg);
-
- /** @domName Event.preventDefault */
- void preventDefault();
-
- /** @domName Event.stopImmediatePropagation */
- void stopImmediatePropagation();
-
- /** @domName Event.stopPropagation */
- void stopPropagation();
-}
« no previous file with comments | « tools/dom/doc/interface/Element.dartdoc ('k') | tools/dom/doc/interface/EventTarget.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698