| OLD | NEW |
| 1 #library('dom'); | 1 #library('dom'); |
| 2 | 2 |
| 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 // DO NOT EDIT | 7 // DO NOT EDIT |
| 8 // Auto-generated Dart DOM library with no implementation. | 8 // Auto-generated Dart DOM library with no implementation. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 1660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1671 interface DOMSettableTokenList extends DOMTokenList { | 1671 interface DOMSettableTokenList extends DOMTokenList { |
| 1672 | 1672 |
| 1673 String value; | 1673 String value; |
| 1674 } | 1674 } |
| 1675 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1675 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1676 // for details. All rights reserved. Use of this source code is governed by a | 1676 // for details. All rights reserved. Use of this source code is governed by a |
| 1677 // BSD-style license that can be found in the LICENSE file. | 1677 // BSD-style license that can be found in the LICENSE file. |
| 1678 | 1678 |
| 1679 // WARNING: Do not edit - generated code. | 1679 // WARNING: Do not edit - generated code. |
| 1680 | 1680 |
| 1681 interface DOMStringList extends List<String> { |
| 1682 |
| 1683 final int length; |
| 1684 |
| 1685 bool contains(String string); |
| 1686 |
| 1687 String item(int index); |
| 1688 } |
| 1689 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1690 // for details. All rights reserved. Use of this source code is governed by a |
| 1691 // BSD-style license that can be found in the LICENSE file. |
| 1692 |
| 1693 // WARNING: Do not edit - generated code. |
| 1694 |
| 1681 interface DOMTokenList { | 1695 interface DOMTokenList { |
| 1682 | 1696 |
| 1683 final int length; | 1697 final int length; |
| 1684 | 1698 |
| 1685 void add(String token); | 1699 void add(String token); |
| 1686 | 1700 |
| 1687 bool contains(String token); | 1701 bool contains(String token); |
| 1688 | 1702 |
| 1689 String item(int index); | 1703 String item(int index); |
| 1690 | 1704 |
| (...skipping 11242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12934 // for details. All rights reserved. Use of this source code is governed by a | 12948 // for details. All rights reserved. Use of this source code is governed by a |
| 12935 // BSD-style license that can be found in the LICENSE file. | 12949 // BSD-style license that can be found in the LICENSE file. |
| 12936 | 12950 |
| 12937 Window get window() => _dummy(); | 12951 Window get window() => _dummy(); |
| 12938 | 12952 |
| 12939 // TODO(vsm): Remove when prefixes are supported. | 12953 // TODO(vsm): Remove when prefixes are supported. |
| 12940 Window get dom_window() => _dummy(); | 12954 Window get dom_window() => _dummy(); |
| 12941 | 12955 |
| 12942 Document get document() => _dummy(); | 12956 Document get document() => _dummy(); |
| OLD | NEW |