| OLD | NEW |
| 1 #library('dom'); | 1 #library('dom'); |
| 2 | 2 |
| 3 #native('frog_dom.js'); | 3 #native('frog_dom.js'); |
| 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 5 // for details. All rights reserved. Use of this source code is governed by a | 5 // for details. All rights reserved. Use of this source code is governed by a |
| 6 // BSD-style license that can be found in the LICENSE file. | 6 // BSD-style license that can be found in the LICENSE file. |
| 7 | 7 |
| 8 // DO NOT EDIT | 8 // DO NOT EDIT |
| 9 // Auto-generated Dart DOM library. | 9 // Auto-generated Dart DOM library. |
| 10 | 10 |
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 class Comment extends CharacterData native "*Comment" { | 822 class Comment extends CharacterData native "*Comment" { |
| 823 } | 823 } |
| 824 | 824 |
| 825 class CompositionEvent extends UIEvent native "*CompositionEvent" { | 825 class CompositionEvent extends UIEvent native "*CompositionEvent" { |
| 826 | 826 |
| 827 String data; | 827 String data; |
| 828 | 828 |
| 829 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr
g, DOMWindow viewArg, String dataArg) native; | 829 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr
g, DOMWindow viewArg, String dataArg) native; |
| 830 } | 830 } |
| 831 | 831 |
| 832 class Console native "*Console" { | 832 class Console native "=console" { |
| 833 | 833 |
| 834 MemoryInfo memory; | 834 MemoryInfo memory; |
| 835 | 835 |
| 836 void assert(bool condition) native; | 836 void assert(bool condition) native; |
| 837 | 837 |
| 838 void count() native; | 838 void count() native; |
| 839 | 839 |
| 840 void debug(Object arg) native; | 840 void debug(Object arg) native; |
| 841 | 841 |
| 842 void dir() native; | 842 void dir() native; |
| (...skipping 10209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11052 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 11052 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 11053 // for details. All rights reserved. Use of this source code is governed by a | 11053 // for details. All rights reserved. Use of this source code is governed by a |
| 11054 // BSD-style license that can be found in the LICENSE file. | 11054 // BSD-style license that can be found in the LICENSE file. |
| 11055 | 11055 |
| 11056 typedef bool RequestAnimationFrameCallback(int time); | 11056 typedef bool RequestAnimationFrameCallback(int time); |
| 11057 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 11057 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 11058 // for details. All rights reserved. Use of this source code is governed by a | 11058 // for details. All rights reserved. Use of this source code is governed by a |
| 11059 // BSD-style license that can be found in the LICENSE file. | 11059 // BSD-style license that can be found in the LICENSE file. |
| 11060 | 11060 |
| 11061 typedef void TimeoutHandler(); | 11061 typedef void TimeoutHandler(); |
| OLD | NEW |