| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index e7ab0f478637148899655e1448fb6c2f579482b6..b11232a18f704dfb6f74a0f219e98278470f0236 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -12841,18 +12841,18 @@ class IFrameElement extends Element native "*HTMLIFrameElement" {
|
| @DocsEditable
|
| String width;
|
| }
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -
|
| -@DocsEditable
|
| @DomName('ImageData')
|
| +
|
| class ImageData native "*ImageData" {
|
|
|
| +
|
| @DomName('ImageData.data')
|
| @DocsEditable
|
| - final Uint8ClampedArray data;
|
| + final List<int> data;
|
|
|
| @DomName('ImageData.height')
|
| @DocsEditable
|
| @@ -12861,6 +12861,7 @@ class ImageData native "*ImageData" {
|
| @DomName('ImageData.width')
|
| @DocsEditable
|
| final int width;
|
| +
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
|
|