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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/become-overlay-composited-layer.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/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();
});

Powered by Google App Engine
This is Rietveld 408576698