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

Unified Diff: third_party/WebKit/LayoutTests/animations/unsigned-underflow.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/unsigned-underflow.html
diff --git a/third_party/WebKit/LayoutTests/animations/unsigned-underflow.html b/third_party/WebKit/LayoutTests/animations/unsigned-underflow.html
index 3be4bdc73363cbe986bb891e825c36451c669ae2..b5c903e071d9b280ce211495d0f67353d449a4ec 100644
--- a/third_party/WebKit/LayoutTests/animations/unsigned-underflow.html
+++ b/third_party/WebKit/LayoutTests/animations/unsigned-underflow.html
@@ -4,22 +4,22 @@
height: 100px;
width: 100px;
border: solid blue 0px;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: cubic-bezier(0,-1,1,-1);
- -webkit-animation-name: anim;
+ animation-duration: 1s;
+ animation-timing-function: cubic-bezier(0,-1,1,-1);
+ animation-name: anim;
}
-@-webkit-keyframes anim {
+@keyframes anim {
from {
border-top-width: 0px;
outline-width: 0px;
- -webkit-column-count: 1;
- -webkit-column-rule-width: 0px;
+ column-count: 1;
+ column-rule-width: 0px;
}
to {
border-top-width: 10px;
outline-width: 10px;
- -webkit-column-count: 10;
- -webkit-column-rule-width: 10px;
+ column-count: 10;
+ column-rule-width: 10px;
}
}
</style>
@@ -32,8 +32,8 @@ const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
[0.5, 'target', 'border-top-width', 0, 0],
[0.5, 'target', 'outline-width', 0, 0],
- [0.5, 'target', '-webkit-column-count', 1, 0],
- [0.5, 'target', '-webkit-column-rule-width', 0, 0],
+ [0.5, 'target', 'column-count', 1, 0],
+ [0.5, 'target', 'column-rule-width', 0, 0],
];
runAnimationTest(expectedValues);

Powered by Google App Engine
This is Rietveld 408576698