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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/transition-color-unspecified.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/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);

Powered by Google App Engine
This is Rietveld 408576698