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

Side by Side Diff: lib/html/doc/interface/FrameElement.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
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 HTMLFrameElement
10 interface FrameElement extends Element {
11
12 /** @domName HTMLFrameElement.contentDocument */
13 final Document contentDocument;
14
15 /** @domName HTMLFrameElement.contentWindow */
16 final Window contentWindow;
17
18 /** @domName HTMLFrameElement.frameBorder */
19 String frameBorder;
20
21 /** @domName HTMLFrameElement.height */
22 final int height;
23
24 /** @domName HTMLFrameElement.location */
25 String location;
26
27 /** @domName HTMLFrameElement.longDesc */
28 String longDesc;
29
30 /** @domName HTMLFrameElement.marginHeight */
31 String marginHeight;
32
33 /** @domName HTMLFrameElement.marginWidth */
34 String marginWidth;
35
36 /** @domName HTMLFrameElement.name */
37 String name;
38
39 /** @domName HTMLFrameElement.noResize */
40 bool noResize;
41
42 /** @domName HTMLFrameElement.scrolling */
43 String scrolling;
44
45 /** @domName HTMLFrameElement.src */
46 String src;
47
48 /** @domName HTMLFrameElement.width */
49 final int width;
50
51 /** @domName HTMLFrameElement.getSVGDocument */
52 SVGDocument getSVGDocument();
53 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/FormElement.dartdoc ('k') | lib/html/doc/interface/FrameSetElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698