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

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

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
39 String get linkColor(); 41 String get linkColor();
40 42
41 void set linkColor(String value); 43 void set linkColor(String value);
42 44
43 HTMLCollection get plugins(); 45 HTMLCollection get plugins();
44 46
45 HTMLCollection get scripts(); 47 HTMLCollection get scripts();
46 48
47 String get vlinkColor(); 49 String get vlinkColor();
48 50
49 void set vlinkColor(String value); 51 void set vlinkColor(String value);
50 52
53 int get width();
54
51 void captureEvents(); 55 void captureEvents();
52 56
53 void clear(); 57 void clear();
54 58
55 void close(); 59 void close();
56 60
57 bool hasFocus(); 61 bool hasFocus();
58 62
59 void open(); 63 void open();
60 64
(...skipping 21 matching lines...) Expand all
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/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