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

Side by Side Diff: lib/html/doc/interface/IFrameElement.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 HTMLIFrameElement
8 interface IFrameElement extends Element default _Elements {
9
10 IFrameElement();
11
12 /** @domName HTMLIFrameElement.align */
13 String align;
14
15 /** @domName HTMLIFrameElement.contentWindow */
16 final Window contentWindow;
17
18 /** @domName HTMLIFrameElement.frameBorder */
19 String frameBorder;
20
21 /** @domName HTMLIFrameElement.height */
22 String height;
23
24 /** @domName HTMLIFrameElement.longDesc */
25 String longDesc;
26
27 /** @domName HTMLIFrameElement.marginHeight */
28 String marginHeight;
29
30 /** @domName HTMLIFrameElement.marginWidth */
31 String marginWidth;
32
33 /** @domName HTMLIFrameElement.name */
34 String name;
35
36 /** @domName HTMLIFrameElement.sandbox */
37 String sandbox;
38
39 /** @domName HTMLIFrameElement.scrolling */
40 String scrolling;
41
42 /** @domName HTMLIFrameElement.src */
43 String src;
44
45 /** @domName HTMLIFrameElement.srcdoc */
46 String srcdoc;
47
48 /** @domName HTMLIFrameElement.width */
49 String width;
50
51 /** @domName HTMLIFrameElement.getSVGDocument */
52 SVGDocument getSVGDocument();
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698