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

Side by Side Diff: client/dom/generated/src/interface/HTMLDocument.dart

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 years, 11 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface HTMLDocument extends Document { 7 interface HTMLDocument extends Document {
8 8
9 Element get activeElement(); 9 Element get activeElement();
10 10
(...skipping 18 matching lines...) Expand all
29 String get dir(); 29 String get dir();
30 30
31 void set dir(String value); 31 void set dir(String value);
32 32
33 HTMLCollection get embeds(); 33 HTMLCollection get embeds();
34 34
35 String get fgColor(); 35 String get fgColor();
36 36
37 void set fgColor(String value); 37 void set fgColor(String value);
38 38
39 int get height();
40
41 String get linkColor(); 39 String get linkColor();
42 40
43 void set linkColor(String value); 41 void set linkColor(String value);
44 42
45 HTMLCollection get plugins(); 43 HTMLCollection get plugins();
46 44
47 HTMLCollection get scripts(); 45 HTMLCollection get scripts();
48 46
49 String get vlinkColor(); 47 String get vlinkColor();
50 48
51 void set vlinkColor(String value); 49 void set vlinkColor(String value);
52 50
53 int get width();
54
55 void captureEvents(); 51 void captureEvents();
56 52
57 void clear(); 53 void clear();
58 54
59 void close(); 55 void close();
60 56
61 bool hasFocus(); 57 bool hasFocus();
62 58
63 void open(); 59 void open();
64 60
(...skipping 21 matching lines...) Expand all
86 * Indicates the document is finished parsing but is still loading 82 * Indicates the document is finished parsing but is still loading
87 * subresources. 83 * subresources.
88 */ 84 */
89 static final String INTERACTIVE = "interactive"; 85 static final String INTERACTIVE = "interactive";
90 86
91 /** 87 /**
92 * Indicates the document and all subresources have been loaded. 88 * Indicates the document and all subresources have been loaded.
93 */ 89 */
94 static final String COMPLETE = "complete"; 90 static final String COMPLETE = "complete";
95 } 91 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/HTMLButtonElement.dart ('k') | client/dom/generated/src/interface/HTMLElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698