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

Unified Diff: third_party/WebKit/ManualTests/svg-css-animate-compound.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/svg-css-animate-compound.html
diff --git a/third_party/WebKit/ManualTests/svg-css-animate-compound.html b/third_party/WebKit/ManualTests/svg-css-animate-compound.html
index 254e54186ef6dd72d7c31c808aeed4e70d836f07..63520e533e7f1da868347cac9ee52a0189c0d61d 100644
--- a/third_party/WebKit/ManualTests/svg-css-animate-compound.html
+++ b/third_party/WebKit/ManualTests/svg-css-animate-compound.html
@@ -31,7 +31,7 @@
height: 60px;
width: 60px;
border: 1px dotted black;
- -webkit-transform-origin: top left; /* to match SVG */
+ transform-origin: top left; /* to match SVG */
}
.final {
@@ -39,14 +39,14 @@
}
#target, #ref {
- -webkit-animation-name: bounce;
- -webkit-animation-duration: 2s;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-direction: alternate;
- -webkit-animation-timing-function: ease-in-out;
+ animation-name: bounce;
+ animation-duration: 2s;
+ animation-iteration-count: infinite;
+ animation-direction: alternate;
+ animation-timing-function: ease-in-out;
}
- @-webkit-keyframes bounce {
+ @keyframes bounce {
from {
transform: translate(0px, 0px) scale(1) rotate(0deg);
}
@@ -57,7 +57,7 @@
</style>
</head>
<body>
- <h1>CSS Animation of 'webkit-transform:' property for SVG</h1>
+ <h1>CSS Animation of 'transform:' property for SVG</h1>
<p>The SVG animation should be identical with the CSS one</p>

Powered by Google App Engine
This is Rietveld 408576698