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

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

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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/ui/search_widget.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js
index 65cc01a67cc5cd1c6f05ec519d7a9cf70deb67a4..dfab9b28987245963bbacaf36df0553c505808de 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/search_widget.js
@@ -264,7 +264,7 @@ cvox.SearchWidget.prototype.createContainerNode_ = function() {
containerNode.style['position'] = 'fixed';
containerNode.style['top'] = '50%';
containerNode.style['left'] = '50%';
- containerNode.style['-webkit-transition'] = 'all 0.3s ease-in';
+ containerNode.style['transition'] = 'all 0.3s ease-in';
containerNode.style['opacity'] = '0.0';
containerNode.style['z-index'] = '2147483647';
containerNode.setAttribute('aria-hidden', 'true');

Powered by Google App Engine
This is Rietveld 408576698