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

Unified Diff: third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.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-during-transition-with-load.html
diff --git a/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html b/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html
index 8994e80359595685d201f6c87f5ce7ad1712b746..56f008adf51f7a430b58689270b626e46b80e006 100644
--- a/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html
+++ b/third_party/WebKit/ManualTests/animation/transition-during-transition-with-load.html
@@ -6,10 +6,10 @@
width: 100px;
background: blue;
left: 0px;
- -webkit-transform: translate3d(0px, 0px, 0px);
- -webkit-transition-duration: 1s;
- -webkit-transition-timing-function: linear;
- -webkit-transition-property: -webkit-transform;
+ transform: translate3d(0px, 0px, 0px);
+ transition-duration: 1s;
+ transition-timing-function: linear;
+ transition-property: transform;
}
</style>
<body>
@@ -29,7 +29,7 @@ jumping to the left. Jumping to the right is ok.
var starTime;
function transitionAgain() {
- box.style.webkitTransform = "translate3d(200px, 0px, 0px)";
+ box.style.transform = "translate3d(200px, 0px, 0px)";
}
var animate = function() {
@@ -47,7 +47,7 @@ jumping to the left. Jumping to the right is ok.
requestAnimationFrame(animate);
startTime = window.performance.now();
- box.style.webkitTransform = "translate3d(100px, 0px, 0px)";
+ box.style.transform = "translate3d(100px, 0px, 0px)";
}
</script>

Powered by Google App Engine
This is Rietveld 408576698