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

Side by Side Diff: sdk/lib/html/doc/interface/UIEvent.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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 /// @domName UIEvent
8 abstract class UIEvent implements Event {
9
10 /** @domName UIEvent.charCode */
11 abstract int get charCode;
12
13 /** @domName UIEvent.detail */
14 abstract int get detail;
15
16 /** @domName UIEvent.keyCode */
17 abstract int get keyCode;
18
19 /** @domName UIEvent.layerX */
20 abstract int get layerX;
21
22 /** @domName UIEvent.layerY */
23 abstract int get layerY;
24
25 /** @domName UIEvent.pageX */
26 abstract int get pageX;
27
28 /** @domName UIEvent.pageY */
29 abstract int get pageY;
30
31 /** @domName UIEvent.view */
32 abstract Window get view;
33
34 /** @domName UIEvent.which */
35 abstract int get which;
36
37 /** @domName UIEvent.initUIEvent */
38 void initUIEvent(String type, bool canBubble, bool cancelable, LocalWindow vie w, int detail);
39 }
OLDNEW
« no previous file with comments | « sdk/lib/html/doc/interface/Storage.dartdoc ('k') | sdk/lib/html/doc/interface/WebSocket.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698