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

Unified Diff: third_party/WebKit/LayoutTests/transitions/hang-with-bad-transition-list.html

Issue 2521493002: 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/transitions/hang-with-bad-transition-list.html
diff --git a/third_party/WebKit/LayoutTests/transitions/hang-with-bad-transition-list.html b/third_party/WebKit/LayoutTests/transitions/hang-with-bad-transition-list.html
index aee1c54c8c3807d439b8fe7c20c85a27da2e8a1c..222b582de78402f8ac0d12cbd74fb8cb87e8511d 100644
--- a/third_party/WebKit/LayoutTests/transitions/hang-with-bad-transition-list.html
+++ b/third_party/WebKit/LayoutTests/transitions/hang-with-bad-transition-list.html
@@ -5,7 +5,7 @@
background: blue;
color: white;
opacity: .666;
- -webkit-transition: opacity, .1s, .1s ease-out;
+ transition: opacity, .1s, .1s ease-out;
}
</style>
<script>
@@ -17,7 +17,7 @@
var doomSpan = document.getElementById("doomSpan");
doomSpan.style.opacity=1;
if (window.testRunner)
- doomSpan.addEventListener('webkitTransitionEnd', function() { testRunner.notifyDone(); });
+ doomSpan.addEventListener('transitionend', function() { testRunner.notifyDone(); });
}
</script>
</head>

Powered by Google App Engine
This is Rietveld 408576698