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

Unified Diff: chrome/browser/resources/uber/uber.js

Issue 2688353003: Remove webkit prefixes for transform and perspective in chrome/ styles (Closed)
Patch Set: 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 | « chrome/browser/resources/uber/uber.css ('k') | chrome/browser/resources/uber/uber_frame.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/uber/uber.js
diff --git a/chrome/browser/resources/uber/uber.js b/chrome/browser/resources/uber/uber.js
index 2d44c7b278c6f80cbcaeb8f48b9e39279f658d59..6879a492e4ed5dd88f780dac22554628bad51dba 100644
--- a/chrome/browser/resources/uber/uber.js
+++ b/chrome/browser/resources/uber/uber.js
@@ -426,7 +426,7 @@ cr.define('uber', function() {
var navWidth = Math.max(0, +navFrame.dataset.width + scrollOffset);
navFrame.style.width = navWidth + 'px';
} else {
- navFrame.style.webkitTransform = 'translateX(' + -scrollOffset + 'px)';
+ navFrame.style.transform = 'translateX(' + -scrollOffset + 'px)';
}
}
« no previous file with comments | « chrome/browser/resources/uber/uber.css ('k') | chrome/browser/resources/uber/uber_frame.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698