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 SVGPreserveAspectRatio { | 7 interface SVGPreserveAspectRatio { |
8 | 8 |
9 static final int SVG_MEETORSLICE_MEET = 1; | 9 static final int SVG_MEETORSLICE_MEET = 1; |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; | 27 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; |
28 | 28 |
29 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; | 29 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; |
30 | 30 |
31 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; | 31 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; |
32 | 32 |
33 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; | 33 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; |
34 | 34 |
35 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; | 35 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
36 | 36 |
37 int get align(); | 37 int align; |
38 | 38 |
39 void set align(int value); | 39 int meetOrSlice; |
40 | |
41 int get meetOrSlice(); | |
42 | |
43 void set meetOrSlice(int value); | |
44 } | 40 } |
OLD | NEW |