| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/shadowhost-keyframes.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadowhost-keyframes.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/shadowhost-keyframes.html
|
| index b77cbd4a4e20c9ecae9af202ae7662fc6e41cdd5..143e4abc76b99ca79a67e0fb61c073e4770a6b16 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadowhost-keyframes.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/shadowhost-keyframes.html
|
| @@ -2,7 +2,7 @@
|
| <html>
|
| <head>
|
| <style>
|
| -@-webkit-keyframes anim {
|
| +@keyframes anim {
|
| from {
|
| background-color: red;
|
| }
|
| @@ -28,9 +28,9 @@ description('Test if @keyframes works for shadow host when using :host. i.e. crb
|
|
|
| var host = document.getElementById('host');
|
| var sr = host.createShadowRoot();
|
| -sr.innerHTML = '<style>@-webkit-keyframes anim {'
|
| +sr.innerHTML = '<style>@keyframes anim {'
|
| + 'from { color: red; } to { color: green; } }'
|
| - + ':host { -webkit-animation: anim 0.5s both; color: red; }</style>'
|
| + + ':host { animation: anim 0.5s both; color: red; }</style>'
|
| + 'I should become green';
|
|
|
| window.setTimeout(function() {
|
|
|