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

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

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List Created 9 years, 1 month 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
11 String get alinkColor(); 11 String get alinkColor();
12 12
13 void set alinkColor(String value); 13 void set alinkColor(String value);
14 14
15 HTMLAllCollection get all();
16
17 void set all(HTMLAllCollection value);
18
15 String get bgColor(); 19 String get bgColor();
16 20
17 void set bgColor(String value); 21 void set bgColor(String value);
18 22
19 String get compatMode(); 23 String get compatMode();
20 24
21 String get designMode(); 25 String get designMode();
22 26
23 void set designMode(String value); 27 void set designMode(String value);
24 28
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 * Indicates the document is finished parsing but is still loading 86 * Indicates the document is finished parsing but is still loading
83 * subresources. 87 * subresources.
84 */ 88 */
85 static final String INTERACTIVE = "interactive"; 89 static final String INTERACTIVE = "interactive";
86 90
87 /** 91 /**
88 * Indicates the document and all subresources have been loaded. 92 * Indicates the document and all subresources have been loaded.
89 */ 93 */
90 static final String COMPLETE = "complete"; 94 static final String COMPLETE = "complete";
91 } 95 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/HTMLAppletElement.dart ('k') | client/dom/generated/src/interface/HTMLEmbedElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698