| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 // WARNING: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName WebKitCSSTransformValue | |
| 10 interface CSSTransformValue extends CSSValueList { | |
| 11 | |
| 12 static final int CSS_MATRIX = 11; | |
| 13 | |
| 14 static final int CSS_MATRIX3D = 21; | |
| 15 | |
| 16 static final int CSS_PERSPECTIVE = 20; | |
| 17 | |
| 18 static final int CSS_ROTATE = 4; | |
| 19 | |
| 20 static final int CSS_ROTATE3D = 17; | |
| 21 | |
| 22 static final int CSS_ROTATEX = 14; | |
| 23 | |
| 24 static final int CSS_ROTATEY = 15; | |
| 25 | |
| 26 static final int CSS_ROTATEZ = 16; | |
| 27 | |
| 28 static final int CSS_SCALE = 5; | |
| 29 | |
| 30 static final int CSS_SCALE3D = 19; | |
| 31 | |
| 32 static final int CSS_SCALEX = 6; | |
| 33 | |
| 34 static final int CSS_SCALEY = 7; | |
| 35 | |
| 36 static final int CSS_SCALEZ = 18; | |
| 37 | |
| 38 static final int CSS_SKEW = 8; | |
| 39 | |
| 40 static final int CSS_SKEWX = 9; | |
| 41 | |
| 42 static final int CSS_SKEWY = 10; | |
| 43 | |
| 44 static final int CSS_TRANSLATE = 1; | |
| 45 | |
| 46 static final int CSS_TRANSLATE3D = 13; | |
| 47 | |
| 48 static final int CSS_TRANSLATEX = 2; | |
| 49 | |
| 50 static final int CSS_TRANSLATEY = 3; | |
| 51 | |
| 52 static final int CSS_TRANSLATEZ = 12; | |
| 53 | |
| 54 /** @domName WebKitCSSTransformValue.operationType */ | |
| 55 final int operationType; | |
| 56 } | |
| OLD | NEW |