| Index: LayoutTests/transitions/interrupt-transform-transition.html
|
| diff --git a/LayoutTests/transitions/interrupt-transform-transition.html b/LayoutTests/transitions/interrupt-transform-transition.html
|
| index 83a48d70c83ed3665619295f9cdaf3c856c755e1..568596a504f6066f3ce5c902f867d73cf24fbdbb 100644
|
| --- a/LayoutTests/transitions/interrupt-transform-transition.html
|
| +++ b/LayoutTests/transitions/interrupt-transform-transition.html
|
| @@ -8,9 +8,9 @@
|
| width: 100px;
|
| height: 100px;
|
| background-color: blue;
|
| - -webkit-transition-property: -webkit-transform;
|
| + -webkit-transition-property: transform;
|
| -webkit-transition-duration: 2s;
|
| - -webkit-transform: translate(0, 0);
|
| + transform: translate(0, 0);
|
| }
|
| </style>
|
| <script>
|
| @@ -21,7 +21,7 @@
|
|
|
| function test()
|
| {
|
| - var t = window.getComputedStyle(document.getElementById('box')).webkitTransform;
|
| + var t = window.getComputedStyle(document.getElementById('box')).transform;
|
| // grab the x value from the matrix()
|
| var lastValueRE = /([\.\d]+),[^,]+\)$/;
|
| var xTranslate = lastValueRE.exec(t)[1];
|
| @@ -35,10 +35,10 @@
|
| function startTest()
|
| {
|
| var box = document.getElementById('box');
|
| - box.style.webkitTransform = 'translate(200px, 0)';
|
| + box.style.transform = 'translate(200px, 0)';
|
|
|
| window.setTimeout(function() {
|
| - box.style.webkitTransform = 'translate(0, 200px)';
|
| + box.style.transform = 'translate(0, 200px)';
|
| window.setTimeout(test, 0);
|
| }, 300);
|
|
|
|
|