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

Unified Diff: third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html

Issue 2518273002: Remove unnecessary webkit prefixes from animation layout tests (Closed)
Patch Set: remove trailing space 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/zero-duration-large-start-delay.html
diff --git a/third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html b/third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html
index f37be4e021074dcfc6ce4594fd100b5177a27d83..050d0e345bb73ef2f160911e1fe508e856f93605 100644
--- a/third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html
+++ b/third_party/WebKit/LayoutTests/animations/zero-duration-large-start-delay.html
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<style>
p {
- -webkit-animation-name: test;
- -webkit-animation-fill-mode: backwards;
+ animation-name: test;
+ animation-fill-mode: backwards;
/* Approx 2^54 */
- -webkit-animation-delay: 18000000000000000s;
+ animation-delay: 18000000000000000s;
}
-@-webkit-keyframes test {
+@keyframes test {
0% {
}
}

Powered by Google App Engine
This is Rietveld 408576698