| 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 Rect { | 7 interface Rect { |
| 8 | 8 |
| 9 CSSPrimitiveValue get bottom(); | 9 final CSSPrimitiveValue bottom; |
| 10 | 10 |
| 11 CSSPrimitiveValue get left(); | 11 final CSSPrimitiveValue left; |
| 12 | 12 |
| 13 CSSPrimitiveValue get right(); | 13 final CSSPrimitiveValue right; |
| 14 | 14 |
| 15 CSSPrimitiveValue get top(); | 15 final CSSPrimitiveValue top; |
| 16 } | 16 } |
| OLD | NEW |