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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js

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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/screen_error_message.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
index c945194bbb381ca6a4b65b6b86ff8b891a696617..4db51b4e18d7066d34f557770dc2c2e77a160005 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
@@ -149,11 +149,11 @@ cvox.ActiveIndicator.STYLE =
' visibility: hidden !important;' +
'}' +
'.cvox_indicator_pulsing {' +
- ' -webkit-animation: ' +
+ ' animation: ' +
// NOTE(deboer): This animation is 0 seconds long to work around
// http://crbug.com/128993. Revert it to 2s when the bug is fixed.
' cvox_indicator_pulsing_animation 0s 2 alternate !important;' +
- ' -webkit-animation-timing-function: ease-in-out !important;' +
+ ' animation-timing-function: ease-in-out !important;' +
'}' +
'.cvox_indicator_region {' +
' opacity: 0 !important;' +
@@ -194,7 +194,7 @@ cvox.ActiveIndicator.STYLE =
'.cvox_indicator_bottom {' +
' border-radius: 0 0 inherit inherit !important;' +
'}' +
- '@-webkit-keyframes cvox_indicator_pulsing_animation {' +
+ '@keyframes cvox_indicator_pulsing_animation {' +
' 0% {opacity: 1.0}' +
' 50% {opacity: 0.5}' +
' 100% {opacity: 1.0}' +
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/screen_error_message.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698