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

Unified Diff: chrome/browser/resources/uber/uber_frame.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/uber/uber_frame.js
diff --git a/chrome/browser/resources/uber/uber_frame.js b/chrome/browser/resources/uber/uber_frame.js
index c815d4c2c6ed9add92e642cd0d66bef2fefbd756..8bcbca418a1b3d9b53ca83f79e8317a7d1dcaf3b 100644
--- a/chrome/browser/resources/uber/uber_frame.js
+++ b/chrome/browser/resources/uber/uber_frame.js
@@ -120,7 +120,7 @@ cr.define('uber_frame', function() {
*/
function adjustToScroll(scrollLeft) {
assert(isRTL());
- document.body.style.webkitTransform = 'translateX(' + -scrollLeft + 'px)';
+ document.body.style.transform = 'translateX(' + -scrollLeft + 'px)';
}
/**

Powered by Google App Engine
This is Rietveld 408576698