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

Unified Diff: chrome/browser/resources/ntp4/tile_page.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/ntp4/tile_page.css ('k') | chrome/browser/resources/options/browser_options.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ntp4/tile_page.js
diff --git a/chrome/browser/resources/ntp4/tile_page.js b/chrome/browser/resources/ntp4/tile_page.js
index ca032caa2a22c2196ef3b2f7ab8c1a4dfbebe2a5..1577cf5a7770d67e2ef8517bc215ea3581c10133 100644
--- a/chrome/browser/resources/ntp4/tile_page.js
+++ b/chrome/browser/resources/ntp4/tile_page.js
@@ -238,8 +238,8 @@ cr.define('ntp', function() {
if (isRTL())
x *= -1;
- this.doppleganger_.style.WebkitTransform = 'translate(' + x + 'px, ' +
- y + 'px)';
+ this.doppleganger_.style.transform = 'translate(' + x + 'px, ' +
+ y + 'px)';
},
/**
« no previous file with comments | « chrome/browser/resources/ntp4/tile_page.css ('k') | chrome/browser/resources/options/browser_options.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698