Chromium Code Reviews| Index: LayoutTests/transitions/extra-transition.html |
| diff --git a/LayoutTests/transitions/extra-transition.html b/LayoutTests/transitions/extra-transition.html |
| index c220197c31117f7179de654d7227138ad340d06d..312a1aba7d109c8bd8d8a21398200afc622c7132 100644 |
| --- a/LayoutTests/transitions/extra-transition.html |
| +++ b/LayoutTests/transitions/extra-transition.html |
| @@ -19,7 +19,7 @@ |
| -webkit-transition-property: -webkit-transform; |
|
alancutter (OOO until 2018)
2014/10/14 05:13:49
Need to change the transition property target as w
|
| -webkit-transition-duration: 500ms; |
| -webkit-transition-timing-function: ease-in; |
| - -webkit-transform: rotate(-5deg); |
| + transform: rotate(-5deg); |
| opacity: 0.2; |
| border: 5px solid white; |
| background-color: gray; |
| @@ -32,7 +32,7 @@ |
| #features > li.enabled > .picture { |
| -webkit-transition-timing-function: ease-out; |
| - -webkit-transform:rotate(10deg); |
| + transform:rotate(10deg); |
| } |
| #features > li > .description { |
| @@ -54,7 +54,7 @@ |
| } |
| #features > li.enabled > .description { |
| - -webkit-transform:translate3d(100px,0,0); |
| + transform:translate3d(100px,0,0); |
| } |
| </style> |
| <script> |