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

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

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
« no previous file with comments | « lib/html/doc/interface/Blob.dartdoc ('k') | lib/html/doc/interface/ButtonElement.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName HTMLBodyElement
10 interface BodyElement extends Element default _Elements {
11
12 BodyElement();
13
14 /**
15 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
16 */
17 BodyElementEvents get on();
18
19 /** @domName HTMLBodyElement.aLink */
20 String aLink;
21
22 /** @domName HTMLBodyElement.background */
23 String background;
24
25 /** @domName HTMLBodyElement.bgColor */
26 String bgColor;
27
28 /** @domName HTMLBodyElement.link */
29 String link;
30
31 /** @domName HTMLBodyElement.vLink */
32 String vLink;
33 }
34
35 interface BodyElementEvents extends ElementEvents {
36
37 EventListenerList get beforeUnload();
38
39 EventListenerList get blur();
40
41 EventListenerList get error();
42
43 EventListenerList get focus();
44
45 EventListenerList get hashChange();
46
47 EventListenerList get load();
48
49 EventListenerList get message();
50
51 EventListenerList get offline();
52
53 EventListenerList get online();
54
55 EventListenerList get popState();
56
57 EventListenerList get resize();
58
59 EventListenerList get storage();
60
61 EventListenerList get unload();
62 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/Blob.dartdoc ('k') | lib/html/doc/interface/ButtonElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698