OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |