| Index: third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html
|
| diff --git a/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html b/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html
|
| index 8994e80359595685d201f6c87f5ce7ad1712b746..56f008adf51f7a430b58689270b626e46b80e006 100644
|
| --- a/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html
|
| +++ b/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html
|
| @@ -6,10 +6,10 @@
|
| width: 100px;
|
| background: blue;
|
| left: 0px;
|
| - -webkit-transform: translate3d(0px, 0px, 0px);
|
| - -webkit-transition-duration: 1s;
|
| - -webkit-transition-timing-function: linear;
|
| - -webkit-transition-property: -webkit-transform;
|
| + transform: translate3d(0px, 0px, 0px);
|
| + transition-duration: 1s;
|
| + transition-timing-function: linear;
|
| + transition-property: transform;
|
| }
|
| </style>
|
| <body>
|
| @@ -29,7 +29,7 @@ jumping to the left. Jumping to the right is ok.
|
| var starTime;
|
|
|
| function transitionAgain() {
|
| - box.style.webkitTransform = "translate3d(200px, 0px, 0px)";
|
| + box.style.transform = "translate3d(200px, 0px, 0px)";
|
| }
|
|
|
| var animate = function() {
|
| @@ -47,7 +47,7 @@ jumping to the left. Jumping to the right is ok.
|
| requestAnimationFrame(animate);
|
|
|
| startTime = window.performance.now();
|
| - box.style.webkitTransform = "translate3d(100px, 0px, 0px)";
|
| + box.style.transform = "translate3d(100px, 0px, 0px)";
|
| }
|
| </script>
|
|
|
|
|