| Index: third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html b/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html
|
| index 0db45409b1d5f61dd3f60292a912cc749756b574..3174a24e531ab244f1eb078eec15ea5367187f29 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html
|
| @@ -9,28 +9,28 @@
|
| background-color: red;
|
| left: 0px;
|
| margin-bottom: 10px;
|
| - -webkit-animation: test 0.8s linear forwards;
|
| - -webkit-animation-play-state: paused;
|
| + animation: test 0.8s linear forwards;
|
| + animation-play-state: paused;
|
| animation: test 0.8s linear forwards;
|
| animation-play-state: paused;
|
| }
|
| .running {
|
| - -webkit-animation-play-state: running;
|
| + animation-play-state: running;
|
| animation-play-state: running;
|
| }
|
| #animation1 {
|
| - -webkit-animation-delay: -0.2s;
|
| + animation-delay: -0.2s;
|
| animation-delay: -0.2s;
|
| }
|
| #animation2 {
|
| - -webkit-animation-delay: 0s;
|
| + animation-delay: 0s;
|
| animation-delay: 0s;
|
| }
|
| #animation3 {
|
| - -webkit-animation-delay: 0.2s;
|
| + animation-delay: 0.2s;
|
| animation-delay: 0.2s;
|
| }
|
| - @-webkit-keyframes test {
|
| + @keyframes test {
|
| from { left: 100px; }
|
| to { left: 300px; }
|
| }
|
|
|