| Index: LayoutTests/transforms/2d/transform-value-types.html
|
| diff --git a/LayoutTests/transforms/2d/transform-value-types.html b/LayoutTests/transforms/2d/transform-value-types.html
|
| index 29761426cb26f05d1fb8bcccd7b0e8522c35183e..2a97d5b346e347162a5d9df7a454ec6e2ac960c4 100644
|
| --- a/LayoutTests/transforms/2d/transform-value-types.html
|
| +++ b/LayoutTests/transforms/2d/transform-value-types.html
|
| @@ -4,7 +4,7 @@
|
| <script src="../../resources/js-test.js"></script>
|
| <style id="style" media="screen">
|
| .non-existent-class {
|
| - -webkit-transform: translate(10px)
|
| + transform: translate(10px)
|
| translateX(10px)
|
| translateY(10px)
|
| rotate(10deg)
|
| @@ -48,7 +48,7 @@
|
| shouldBe("jsWrapperClass(" + expression + ".constructor)", "'" + constructorName + "'");
|
| }
|
|
|
| - var transformRule = stylesheet.cssRules.item(0).style.getPropertyCSSValue('-webkit-transform');
|
| + var transformRule = stylesheet.cssRules.item(0).style.getPropertyCSSValue('transform');
|
| test("transformRule", "CSSValueList");
|
|
|
| test("transformRule[0]", "WebKitCSSTransformValue");
|
|
|