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

Side by Side Diff: client/dom/generated/src/interface/HTMLObjectElement.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 HTMLObjectElement extends HTMLElement { 7 interface HTMLObjectElement extends HTMLElement {
8 8
9 String get align(); 9 String align;
10 10
11 void set align(String value); 11 String archive;
12 12
13 String get archive(); 13 String border;
14 14
15 void set archive(String value); 15 String code;
16 16
17 String get border(); 17 String codeBase;
18 18
19 void set border(String value); 19 String codeType;
20 20
21 String get code(); 21 final Document contentDocument;
22 22
23 void set code(String value); 23 String data;
24 24
25 String get codeBase(); 25 bool declare;
26 26
27 void set codeBase(String value); 27 final HTMLFormElement form;
28 28
29 String get codeType(); 29 String height;
30 30
31 void set codeType(String value); 31 int hspace;
32 32
33 Document get contentDocument(); 33 String name;
34 34
35 String get data(); 35 String standby;
36 36
37 void set data(String value); 37 String type;
38 38
39 bool get declare(); 39 String useMap;
40 40
41 void set declare(bool value); 41 final String validationMessage;
42 42
43 HTMLFormElement get form(); 43 final ValidityState validity;
44 44
45 String get height(); 45 int vspace;
46 46
47 void set height(String value); 47 String width;
48 48
49 int get hspace(); 49 final bool willValidate;
50
51 void set hspace(int value);
52
53 String get name();
54
55 void set name(String value);
56
57 String get standby();
58
59 void set standby(String value);
60
61 String get type();
62
63 void set type(String value);
64
65 String get useMap();
66
67 void set useMap(String value);
68
69 String get validationMessage();
70
71 ValidityState get validity();
72
73 int get vspace();
74
75 void set vspace(int value);
76
77 String get width();
78
79 void set width(String value);
80
81 bool get willValidate();
82 50
83 bool checkValidity(); 51 bool checkValidity();
84 52
85 SVGDocument getSVGDocument(); 53 SVGDocument getSVGDocument();
86 54
87 void setCustomValidity(String error); 55 void setCustomValidity(String error);
88 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698