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

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

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (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/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..c5df3d038453218ad31c2be3c4ab52f66359ba6c 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
@@ -149,15 +149,15 @@ 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;' +
- ' -webkit-transition: opacity 1s !important;' +
+ ' transition: opacity 1s !important;' +
'}' +
'.cvox_indicator_visible {' +
' opacity: 1 !important;' +
@@ -168,13 +168,13 @@ cvox.ActiveIndicator.STYLE =
' border-radius: 6px !important;' +
' margin: 0px !important;' +
' padding: 0px !important;' +
- ' -webkit-transition: none !important;' +
+ ' transition: none !important;' +
'}' +
'.cvox_indicator_animate_normal .cvox_indicator_region * {' +
- ' -webkit-transition: all 0.3s !important;' +
+ ' transition: all 0.3s !important;' +
'}' +
'.cvox_indicator_animate_quick .cvox_indicator_region * {' +
- ' -webkit-transition: all 0.1s !important;' +
+ ' transition: all 0.1s !important;' +
'}' +
'.cvox_indicator_top {' +
' border-radius: inherit inherit 0 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}' +

Powered by Google App Engine
This is Rietveld 408576698