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

Side by Side Diff: lib/html/doc/interface/BodyElement.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 HTMLBodyElement
8 interface BodyElement extends Element default _Elements {
9
10 BodyElement();
11
12 /**
13 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
14 */
15 BodyElementEvents get on();
16
17 /** @domName HTMLBodyElement.aLink */
18 String aLink;
19
20 /** @domName HTMLBodyElement.background */
21 String background;
22
23 /** @domName HTMLBodyElement.bgColor */
24 String bgColor;
25
26 /** @domName HTMLBodyElement.link */
27 String link;
28
29 /** @domName HTMLBodyElement.vLink */
30 String vLink;
31 }
32
33 interface BodyElementEvents extends ElementEvents {
34
35 EventListenerList get beforeUnload();
36
37 EventListenerList get blur();
38
39 EventListenerList get error();
40
41 EventListenerList get focus();
42
43 EventListenerList get hashChange();
44
45 EventListenerList get load();
46
47 EventListenerList get message();
48
49 EventListenerList get offline();
50
51 EventListenerList get online();
52
53 EventListenerList get popState();
54
55 EventListenerList get resize();
56
57 EventListenerList get storage();
58
59 EventListenerList get unload();
60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698