| Index: third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html b/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
|
| index 9ee64f085cada70552e1cf6c535496c53fa6c69c..427f77b20217e9b54221a6299046745b31db363e 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/animation/animated-composited-inside-hidden.html
|
| @@ -17,10 +17,10 @@
|
| .inner {
|
| width: 80px;
|
| height: 80px;
|
| - -webkit-animation: spin 5s linear infinite;
|
| + animation: spin 5s linear infinite;
|
| }
|
|
|
| - @-webkit-keyframes spin {
|
| + @keyframes spin {
|
| 0% { transform: rotate(0); }
|
| 100% { transform: rotate(360deg); }
|
| }
|
| @@ -29,7 +29,7 @@
|
| position: relative;
|
| left: 0;
|
| background-color: blue;
|
| - -webkit-transition: left 1s linear;
|
| + transition: left 1s linear;
|
| }
|
|
|
| #container.animating #transition-tester {
|
|
|