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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too Created 3 years, 5 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/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html b/third_party/WebKit/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html
index 4075931809835716db87607f9b18c7b522c131cf..125c28a68828b66fc109eec26fb61d5e688a77fb 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html
@@ -13,10 +13,10 @@
width: 100px;
height: 100px;
background-color: blue;
- -webkit-animation-duration: 10s;
+ animation-duration: 10s;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { transform: matrix(1, 0, 0, -1, 0, 0); }
to { transform: matrix(1, 0, 0, 1, 0, 0); }
}
@@ -32,7 +32,7 @@
function snapshot()
{
var boxComputedStyle = window.getComputedStyle(document.getElementById('box'));
- var matrix = new WebKitCSSMatrix(boxComputedStyle.webkitTransform);
+ var matrix = new WebKitCSSMatrix(boxComputedStyle.transform);
// "d" component (scaleY) should be negative.
if (matrix["d"] > 0)
@@ -45,7 +45,7 @@
function startAnimation()
{
- document.getElementById("box").style.webkitAnimationName = "anim";
+ document.getElementById("box").style.animationName = "anim";
}
document.addEventListener('webkitAnimationStart', snapshot, false);

Powered by Google App Engine
This is Rietveld 408576698