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

Unified Diff: chrome/browser/resources/chromeos/login/screen_error_message.css

Issue 2689163002: Remove webkit prefixes for CSS Animation in chrome/ styles (Closed)
Patch Set: rebase 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: chrome/browser/resources/chromeos/login/screen_error_message.css
diff --git a/chrome/browser/resources/chromeos/login/screen_error_message.css b/chrome/browser/resources/chromeos/login/screen_error_message.css
index 563de7a4fca9123df0059309d73f91b840ded051..b85da66800e134f26a18ac701be7e8302fbb87c8 100644
--- a/chrome/browser/resources/chromeos/login/screen_error_message.css
+++ b/chrome/browser/resources/chromeos/login/screen_error_message.css
@@ -112,7 +112,7 @@
display: block;
}
-@-webkit-keyframes connecting-indicator-ellipsis {
+@keyframes connecting-indicator-ellipsis {
0% {
opacity: 0;
}
@@ -128,15 +128,15 @@
}
#connecting-indicator-ellipsis-1 {
- -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite;
+ animation: connecting-indicator-ellipsis 3s 0 infinite;
}
#connecting-indicator-ellipsis-2 {
- -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite;
+ animation: connecting-indicator-ellipsis 3s 500ms infinite;
}
#connecting-indicator-ellipsis-3 {
- -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite;
+ animation: connecting-indicator-ellipsis 3s 1s infinite;
}
#error-navigation {

Powered by Google App Engine
This is Rietveld 408576698