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

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

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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 Document extends Node, NodeSelector { 7 interface Document extends Node, NodeSelector {
8 8
9 String get URL(); 9 final String URL;
10 10
11 HTMLCollection get anchors(); 11 final HTMLCollection anchors;
12 12
13 HTMLCollection get applets(); 13 final HTMLCollection applets;
14 14
15 HTMLElement get body(); 15 HTMLElement body;
16 16
17 void set body(HTMLElement value); 17 final String characterSet;
18 18
19 String get characterSet(); 19 String charset;
20 20
21 String get charset(); 21 final String compatMode;
22 22
23 void set charset(String value); 23 String cookie;
24 24
25 String get compatMode(); 25 final String defaultCharset;
26 26
27 String get cookie(); 27 final DOMWindow defaultView;
28 28
29 void set cookie(String value); 29 final DocumentType doctype;
30 30
31 String get defaultCharset(); 31 final Element documentElement;
32 32
33 DOMWindow get defaultView(); 33 String documentURI;
34 34
35 DocumentType get doctype(); 35 String domain;
36 36
37 Element get documentElement(); 37 final HTMLCollection forms;
38 38
39 String get documentURI(); 39 final HTMLHeadElement head;
40 40
41 void set documentURI(String value); 41 final HTMLCollection images;
42 42
43 String get domain(); 43 final DOMImplementation implementation;
44 44
45 void set domain(String value); 45 final String inputEncoding;
46 46
47 HTMLCollection get forms(); 47 final String lastModified;
48 48
49 HTMLHeadElement get head(); 49 final HTMLCollection links;
50 50
51 HTMLCollection get images(); 51 Location location;
52 52
53 DOMImplementation get implementation(); 53 final String preferredStylesheetSet;
54 54
55 String get inputEncoding(); 55 final String readyState;
56 56
57 String get lastModified(); 57 final String referrer;
58 58
59 HTMLCollection get links(); 59 String selectedStylesheetSet;
60 60
61 Location get location(); 61 final StyleSheetList styleSheets;
62 62
63 void set location(Location value); 63 String title;
64 64
65 String get preferredStylesheetSet(); 65 final Element webkitCurrentFullScreenElement;
66 66
67 String get readyState(); 67 final bool webkitFullScreenKeyboardInputAllowed;
68 68
69 String get referrer(); 69 final bool webkitHidden;
70 70
71 String get selectedStylesheetSet(); 71 final bool webkitIsFullScreen;
72 72
73 void set selectedStylesheetSet(String value); 73 final String webkitVisibilityState;
74 74
75 StyleSheetList get styleSheets(); 75 final String xmlEncoding;
76 76
77 String get title(); 77 bool xmlStandalone;
78 78
79 void set title(String value); 79 String xmlVersion;
80
81 Element get webkitCurrentFullScreenElement();
82
83 bool get webkitFullScreenKeyboardInputAllowed();
84
85 bool get webkitHidden();
86
87 bool get webkitIsFullScreen();
88
89 String get webkitVisibilityState();
90
91 String get xmlEncoding();
92
93 bool get xmlStandalone();
94
95 void set xmlStandalone(bool value);
96
97 String get xmlVersion();
98
99 void set xmlVersion(String value);
100 80
101 Node adoptNode(Node source); 81 Node adoptNode(Node source);
102 82
103 Range caretRangeFromPoint(int x, int y); 83 Range caretRangeFromPoint(int x, int y);
104 84
105 Attr createAttribute(String name); 85 Attr createAttribute(String name);
106 86
107 Attr createAttributeNS(String namespaceURI, String qualifiedName); 87 Attr createAttributeNS(String namespaceURI, String qualifiedName);
108 88
109 CDATASection createCDATASection(String data); 89 CDATASection createCDATASection(String data);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 String queryCommandValue(String command); 153 String queryCommandValue(String command);
174 154
175 Element querySelector(String selectors); 155 Element querySelector(String selectors);
176 156
177 NodeList querySelectorAll(String selectors); 157 NodeList querySelectorAll(String selectors);
178 158
179 void webkitCancelFullScreen(); 159 void webkitCancelFullScreen();
180 160
181 WebKitNamedFlow webkitGetFlowByName(String name); 161 WebKitNamedFlow webkitGetFlowByName(String name);
182 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698