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

Unified Diff: third_party/WebKit/LayoutTests/animations/cross-fade-list-style-image.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/cross-fade-list-style-image.html
diff --git a/third_party/WebKit/LayoutTests/animations/cross-fade-list-style-image.html b/third_party/WebKit/LayoutTests/animations/cross-fade-list-style-image.html
index 9cc372c1ca32b81cf07528a886dfc27b487569e1..72823541582c7567e9d8adef70af027fa74625a9 100644
--- a/third_party/WebKit/LayoutTests/animations/cross-fade-list-style-image.html
+++ b/third_party/WebKit/LayoutTests/animations/cross-fade-list-style-image.html
@@ -23,11 +23,11 @@
width: 100px;
list-style: square -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%);
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { list-style-image: url(resources/blue-100.png); }
to { list-style-image: url(resources/green-100.png); }
}
- @-webkit-keyframes animShorthand {
+ @keyframes animShorthand {
from { list-style: square url(resources/blue-100.png); }
to { list-style: square url(resources/green-100.png); }
}
@@ -35,8 +35,8 @@
<script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
function runTest() {
- document.querySelector('#box').style.webkitAnimation = "anim 1s linear infinite";
- document.querySelector('#boxShorthand').style.webkitAnimation = "animShorthand 1s linear infinite";
+ document.querySelector('#box').style.animation = "anim 1s linear infinite";
+ document.querySelector('#boxShorthand').style.animation = "animShorthand 1s linear infinite";
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]

Powered by Google App Engine
This is Rietveld 408576698