| Index: third_party/WebKit/LayoutTests/animations/animation-name-none.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/animation-name-none.html b/third_party/WebKit/LayoutTests/animations/animation-name-none.html
|
| index 96f04a6819ed2c5210eb6e9f4b2f7fa4c50d859e..9a3d87edf789d64637b50b7ac3ea93aa11732c6a 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/animation-name-none.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/animation-name-none.html
|
| @@ -3,9 +3,9 @@
|
| <head>
|
| <title>Test setting animation name to none</title>
|
| <style>
|
| - @-webkit-keyframes test {}
|
| + @keyframes test {}
|
| #test {
|
| - -webkit-animation-name: test;
|
| + animation-name: test;
|
| }
|
| </style>
|
| <script>
|
| @@ -14,9 +14,9 @@
|
| </script>
|
| </head>
|
| <body>
|
| -<div id="test">This tests setting -webkit-animation-name to none, it passes if it does not crash.</div>
|
| +<div id="test">This tests setting animation-name to none, it passes if it does not crash.</div>
|
| <script>
|
| - document.querySelector('#test').style.webkitAnimationName = 'none'
|
| + document.querySelector('#test').style.animationName = 'none'
|
| </script>
|
| </body>
|
| </html>
|
|
|