Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Unified Diff: third_party/WebKit/LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition.html

Issue 2518943002: CSS Transitions: Reduce usage of webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition.html
diff --git a/third_party/WebKit/LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition.html b/third_party/WebKit/LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition.html
index 25bce5f933f459d624d2bfdd8162309f0b6e7149..3c532702ad3d6d960cf7265cf27cdb8d36b954be 100644
--- a/third_party/WebKit/LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition.html
+++ b/third_party/WebKit/LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition.html
@@ -19,7 +19,7 @@
#fading {
opacity: 0;
- -webkit-transition: opacity 0.1s;
+ transition: opacity 0.1s;
}
</style>
<script type="text/javascript" charset="utf-8">
@@ -33,7 +33,7 @@
// At the end of this fade we are interested in the size of .test in the layer dump.
// It should be constrained to the size of the view, so not tiled.
var fader = document.getElementById('fading');
- fader.addEventListener('webkitTransitionEnd', fadeDone, false);
+ fader.addEventListener('transitionend', fadeDone, false);
document.getElementById('fading').style.opacity = 1;
}

Powered by Google App Engine
This is Rietveld 408576698