Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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(int index); | 67 void remove(); |
|
sra1
2011/11/17 00:18:12
The argument needs to come back, even if it is 'va
vsm
2011/11/17 00:37:09
Filed a bug for this.
On 2011/11/17 00:18:12, sra
| |
| 68 | 68 |
| 69 void setCustomValidity(String error); | 69 void setCustomValidity(String error); |
| 70 } | 70 } |
| OLD | NEW |