| 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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 | 590 |
| 591 String get typeName() native; | 591 String get typeName() native; |
| 592 } | 592 } |
| 593 | 593 |
| 594 class CanvasPixelArray native "*CanvasPixelArray" { | 594 class CanvasPixelArray native "*CanvasPixelArray" { |
| 595 | 595 |
| 596 int length; | 596 int length; |
| 597 | 597 |
| 598 int operator[](int index) native; | 598 int operator[](int index) native; |
| 599 | 599 |
| 600 int item(int index) native; | |
| 601 | |
| 602 var dartObjectLocalStorage; | 600 var dartObjectLocalStorage; |
| 603 | 601 |
| 604 String get typeName() native; | 602 String get typeName() native; |
| 605 } | 603 } |
| 606 | 604 |
| 607 class CanvasRenderingContext native "*CanvasRenderingContext" { | 605 class CanvasRenderingContext native "*CanvasRenderingContext" { |
| 608 | 606 |
| 609 HTMLCanvasElement canvas; | 607 HTMLCanvasElement canvas; |
| 610 | 608 |
| 611 var dartObjectLocalStorage; | 609 var dartObjectLocalStorage; |
| (...skipping 10442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11054 // 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 |
| 11055 // 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 |
| 11056 // BSD-style license that can be found in the LICENSE file. | 11054 // BSD-style license that can be found in the LICENSE file. |
| 11057 | 11055 |
| 11058 typedef bool RequestAnimationFrameCallback(int time); | 11056 typedef bool RequestAnimationFrameCallback(int time); |
| 11059 // 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 |
| 11060 // 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 |
| 11061 // BSD-style license that can be found in the LICENSE file. | 11059 // BSD-style license that can be found in the LICENSE file. |
| 11062 | 11060 |
| 11063 typedef void TimeoutHandler(); | 11061 typedef void TimeoutHandler(); |
| OLD | NEW |