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

Side by Side Diff: lib/html/doc/interface/FrameSetElement.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/FrameElement.dartdoc ('k') | lib/html/doc/interface/Geolocation.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 HTMLFrameSetElement
10 interface FrameSetElement extends Element {
11
12 /**
13 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
14 */
15 FrameSetElementEvents get on();
16
17 /** @domName HTMLFrameSetElement.cols */
18 String cols;
19
20 /** @domName HTMLFrameSetElement.rows */
21 String rows;
22 }
23
24 interface FrameSetElementEvents extends ElementEvents {
25
26 EventListenerList get beforeUnload();
27
28 EventListenerList get blur();
29
30 EventListenerList get error();
31
32 EventListenerList get focus();
33
34 EventListenerList get hashChange();
35
36 EventListenerList get load();
37
38 EventListenerList get message();
39
40 EventListenerList get offline();
41
42 EventListenerList get online();
43
44 EventListenerList get popState();
45
46 EventListenerList get resize();
47
48 EventListenerList get storage();
49
50 EventListenerList get unload();
51 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/FrameElement.dartdoc ('k') | lib/html/doc/interface/Geolocation.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698