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

Unified Diff: third_party/WebKit/LayoutTests/animations/empty-keyframes.html

Issue 2523543004: CSS Animations: Remove unnecessary webkit prefixes from layout tests (Closed)
Patch Set: Created 4 years, 1 month 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/empty-keyframes.html
diff --git a/third_party/WebKit/LayoutTests/animations/empty-keyframes.html b/third_party/WebKit/LayoutTests/animations/empty-keyframes.html
index 0d914ebbe18035f91b9316b91c1836f2b0d5cef4..492481bd223a4e73fe4dcac03c14a6038d6fbc13 100644
--- a/third_party/WebKit/LayoutTests/animations/empty-keyframes.html
+++ b/third_party/WebKit/LayoutTests/animations/empty-keyframes.html
@@ -7,13 +7,13 @@
<title>Empty keyframes</title>
<style type="text/css" media="screen">
#box {
- -webkit-animation-name: test, test-one;
- -webkit-animation-duration: 1s;
+ animation-name: test, test-one;
+ animation-duration: 1s;
}
- @-webkit-keyframes test {
+ @keyframes test {
}
- @-webkit-keyframes test-one {
+ @keyframes test-one {
0% {}
}
</style>

Powered by Google App Engine
This is Rietveld 408576698