| Index: third_party/WebKit/LayoutTests/paint/invalidation/compositing/become-overlay-composited-layer.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/become-overlay-composited-layer.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/become-overlay-composited-layer.html
|
| index b54484065e2a94701955988c0ee49808aaf27f3e..87854bc7b82da683854dd438b6c54a071605fe1d 100644
|
| --- a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/become-overlay-composited-layer.html
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/become-overlay-composited-layer.html
|
| @@ -17,7 +17,7 @@
|
| width: 250px;
|
| left: 250px;
|
| background-color: blue;
|
| - -webkit-transition: left 0.2s, top 0.2s;
|
| + transition: left 0.2s, top 0.2s;
|
| }
|
|
|
| #container.right #box
|
| @@ -35,7 +35,7 @@
|
| width: 50px;
|
| height: 50px;
|
| opacity: 0.5;
|
| - -webkit-transition: opacity 0.2s;
|
| + transition: opacity 0.2s;
|
| }
|
|
|
| #container.right #fader {
|
| @@ -50,8 +50,8 @@
|
| {
|
| var container = document.getElementById("container");
|
| var fader = document.getElementById("fader");
|
| - fader.addEventListener('webkitTransitionEnd', function() {
|
| - fader.addEventListener('webkitTransitionEnd', function() {
|
| + fader.addEventListener('transitionend', function() {
|
| + fader.addEventListener('transitionend', function() {
|
| if (window.testRunner)
|
| testRunner.notifyDone();
|
| });
|
|
|