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

Unified Diff: ui/file_manager/file_manager/common/js/util.js

Issue 1549903002: Replace -webkit-transform with transform in Chrome UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase CL Created 4 years, 9 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: ui/file_manager/file_manager/common/js/util.js
diff --git a/ui/file_manager/file_manager/common/js/util.js b/ui/file_manager/file_manager/common/js/util.js
index 0fa0624493ee3ae2d90427e1718b5a2c0382abf2..9eb6f1c99281089fe7beb8d19a08c59e44161e2b 100644
--- a/ui/file_manager/file_manager/common/js/util.js
+++ b/ui/file_manager/file_manager/common/js/util.js
@@ -259,7 +259,7 @@ util.Transform;
* contains scaleX, scaleY and rotate90 properties.
*/
util.applyTransform = function(element, transform) {
- element.style.webkitTransform =
+ element.style.transform =
transform ? 'scaleX(' + transform.scaleX + ') ' +
'scaleY(' + transform.scaleY + ') ' +
'rotate(' + transform.rotate90 * 90 + 'deg)' :
« no previous file with comments | « ui/accessibility/extensions/colorenhancer/res/setup.css ('k') | ui/file_manager/file_manager/foreground/css/common.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698