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

Unified Diff: third_party/WebKit/ManualTests/animation/transition-on-and-offscreen-animation.html

Issue 2715113003: CSS manual tests: reduce usage of webkit prefix (Closed)
Patch Set: Created 3 years, 10 months 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/ManualTests/animation/transition-on-and-offscreen-animation.html
diff --git a/third_party/WebKit/ManualTests/animation/transition-on-and-offscreen-animation.html b/third_party/WebKit/ManualTests/animation/transition-on-and-offscreen-animation.html
index e41f0fe62e4b11f27c1aab3b90f673b04ba69806..28d0db9fe6d039c27cb83cc3cc69e8b83d1ddacb 100644
--- a/third_party/WebKit/ManualTests/animation/transition-on-and-offscreen-animation.html
+++ b/third_party/WebKit/ManualTests/animation/transition-on-and-offscreen-animation.html
@@ -12,7 +12,7 @@
width: 200px;
border: 1px solid black;
background-color : red;
- -webkit-transition: -webkit-transform 3s;
+ transition: transform 3s;
}
</style>
@@ -22,19 +22,19 @@
var box = document.getElementById("box");
window.setTimeout(function() {
- box.style.webkitTransform = "translateX(" + window.innerWidth * 2.5 + "px)";
+ box.style.transform = "translateX(" + window.innerWidth * 2.5 + "px)";
}, 3000);
window.setTimeout(function() {
- box.style.webkitTransform = "translateX(0px)";
+ box.style.transform = "translateX(0px)";
}, 6000);
window.setTimeout(function() {
- box.style.webkitTransform = "translateX(" + window.innerWidth * 2.5 + "px)";
+ box.style.transform = "translateX(" + window.innerWidth * 2.5 + "px)";
}, 9000);
window.setTimeout(function() {
- box.style.webkitTransform = "translateX(0px)";
+ box.style.transform = "translateX(0px)";
}, 12000);
}
window.addEventListener('load', runTest, false)

Powered by Google App Engine
This is Rietveld 408576698