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

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

Issue 8591026: Roll DOM APIs forward on IDL & update Frog DOM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Change window and document to getters 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 HTMLSelectElement extends HTMLElement { 7 interface HTMLSelectElement extends HTMLElement {
8 8
9 bool get autofocus(); 9 bool get autofocus();
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 bool get willValidate(); 57 bool get willValidate();
58 58
59 void add(HTMLElement element, HTMLElement before); 59 void add(HTMLElement element, HTMLElement before);
60 60
61 bool checkValidity(); 61 bool checkValidity();
62 62
63 Node item(int index); 63 Node item(int index);
64 64
65 Node namedItem(String name); 65 Node namedItem(String name);
66 66
67 void remove(); 67 void remove(var index_OR_option);
68 68
69 void setCustomValidity(String error); 69 void setCustomValidity(String error);
70 } 70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698