| Index: third_party/WebKit/LayoutTests/fast/css/transition-color-unspecified.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/transition-color-unspecified.html b/third_party/WebKit/LayoutTests/fast/css/transition-color-unspecified.html
|
| index ee60588fb4f01035e4f2881eaaae992479a558c6..6837cdcc8e5f0dd908425b9f60a61e3443618e54 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css/transition-color-unspecified.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css/transition-color-unspecified.html
|
| @@ -1,5 +1,5 @@
|
| <style>
|
| - div#test { position: absolute; top: 0; left: 0; color: green; border: 50px solid; width: 0; -webkit-transition-duration: 1ms; }
|
| + div#test { position: absolute; top: 0; left: 0; color: green; border: 50px solid; width: 0; transition-duration: 1ms; }
|
| div#test.orange { border-color: orange; }
|
| </style>
|
| <div style="position: relative; background-color: red; width: 100px; height: 100px;">
|
| @@ -12,7 +12,7 @@
|
| // Force a layout so that changing the classname below causes an animation.
|
| document.body.offsetHeight;
|
|
|
| - document.getElementById("test").addEventListener('webkitTransitionEnd', function() {
|
| + document.getElementById("test").addEventListener('transitionend', function() {
|
| if (window.testRunner)
|
| setTimeout("testRunner.notifyDone()", 0);
|
| }, false);
|
|
|