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

Side by Side Diff: tools/dom/doc/interface/MouseEvent.dartdoc

Issue 11691009: Moved most of html lib generating scripts into tools. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 12 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/dom/doc/interface/HttpRequest.dartdoc ('k') | tools/dom/doc/interface/Node.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: 5 // WARNING:
6 // This file contains documentation that is merged into the real source. 6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here. 7 // Do not make code changes here.
8 8
9 /// @domName MouseEvent 9 /// @domName MouseEvent
10 abstract class MouseEvent implements UIEvent { 10 abstract class MouseEvent implements UIEvent {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 /** @domName MouseEvent.x */ 85 /** @domName MouseEvent.x */
86 abstract int get x; 86 abstract int get x;
87 87
88 /** @domName MouseEvent.y */ 88 /** @domName MouseEvent.y */
89 abstract int get y; 89 abstract int get y;
90 90
91 /** @domName MouseEvent.initMouseEvent */ 91 /** @domName MouseEvent.initMouseEvent */
92 void $dom_initMouseEvent(String type, bool canBubble, bool cancelable, LocalWi ndow view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relat edTarget); 92 void $dom_initMouseEvent(String type, bool canBubble, bool cancelable, LocalWi ndow view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relat edTarget);
93 } 93 }
OLDNEW
« no previous file with comments | « tools/dom/doc/interface/HttpRequest.dartdoc ('k') | tools/dom/doc/interface/Node.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698