From 30fe913241160c52a22c2f28d23e67e8e7dd5782 Mon Sep 17 00:00:00 2001 From: David Storey Date: Mon, 23 Nov 2015 18:23:37 -0800 Subject: [PATCH] Update CSS Transforms browser support and valid values * Update browser support * Add missing enums * Add perspective() function for transform property. * Update spec link copy and paste error from entry above --- .../css/common/buildscripts/css-schema.xml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/vs/languages/css/common/buildscripts/css-schema.xml b/src/vs/languages/css/common/buildscripts/css-schema.xml index a0862d5606f..2f4c5038323 100644 --- a/src/vs/languages/css/common/buildscripts/css-schema.xml +++ b/src/vs/languages/css/common/buildscripts/css-schema.xml @@ -646,7 +646,7 @@ - + Determines whether or not the 'back' side of a transformed element is visible when facing the viewer. With an identity transform, the front side of an element faces the viewer. @@ -8074,6 +8074,7 @@ specifies a 3D transformation as a 4x4 homogeneous matrix of 16 values in column-major order. + Specifies a 2D rotation by the angle specified in the parameter about the origin of the element, as defined by the transform-origin property. @@ -12189,7 +12190,7 @@ - + Applies the same transform as the perspective(<number>) transform function, except that it applies only to the positioned or transformed children of the element, not to the transform on the element itself. @@ -12197,7 +12198,7 @@ - + Establishes the origin for the perspective property. It effectively sets the X and Y position at which the viewer appears to be looking at the children of the element. @@ -16028,7 +16029,7 @@ - + A two-dimensional transformation is applied to an element through the 'transform' property. This property contains a list of transform functions similar to those allowed by SVG. @@ -16038,6 +16039,7 @@ specifies a 3D transformation as a 4x4 homogeneous matrix of 16 values in column-major order. + Specifies a 2D rotation by the angle specified in the parameter about the origin of the element, as defined by the transform-origin property. @@ -16094,7 +16096,7 @@ - + Establishes the origin of transformation for an element. This property is applied by first translating the element by the negated value of the property, then applying the element's transform, then translating by the property value. @@ -16104,13 +16106,13 @@ - + Defines how nested elements are rendered in 3D space. All children of this element are rendered flattened into the 2D plane of the element. - + Flattening is not performed, so children maintain their position in 3D space. @@ -18276,6 +18278,7 @@ specifies a 3D transformation as a 4x4 homogeneous matrix of 16 values in column-major order. + Specifies a 2D rotation by the angle specified in the parameter about the origin of the element, as defined by the transform-origin property. @@ -18332,7 +18335,7 @@ - + Establishes the origin of transformation for an element. This property is applied by first translating the element by the negated value of the property, then applying the element's transform, then translating by the property value. -- GitLab