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

Side by Side Diff: client/html/generated/html/interface/BodyElement.dart

Issue 9623017: Refactor the event-generation code to locate it in systemhtml.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 9 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
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: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface BodyElement extends Element { 7 interface BodyElement extends Element {
8 8
9 BodyElementEvents get on();
10
9 String aLink; 11 String aLink;
10 12
11 String background; 13 String background;
12 14
13 String bgColor; 15 String bgColor;
14 16
15 String link; 17 String link;
16 18
17 String vLink; 19 String vLink;
18
19 BodyElementEvents get on();
20 } 20 }
21 21
22 interface BodyElementEvents extends ElementEvents { 22 interface BodyElementEvents extends ElementEvents {
23 23
24 EventListenerList get beforeUnload(); 24 EventListenerList get beforeUnload();
25 25
26 EventListenerList get blur(); 26 EventListenerList get blur();
27 27
28 EventListenerList get error(); 28 EventListenerList get error();
29 29
(...skipping 10 matching lines...) Expand all
40 EventListenerList get online(); 40 EventListenerList get online();
41 41
42 EventListenerList get popState(); 42 EventListenerList get popState();
43 43
44 EventListenerList get resize(); 44 EventListenerList get resize();
45 45
46 EventListenerList get storage(); 46 EventListenerList get storage();
47 47
48 EventListenerList get unload(); 48 EventListenerList get unload();
49 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698