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

Unified Diff: chrome/browser/resources/ntp4/tile_page.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/ntp4/tile_page.js
diff --git a/chrome/browser/resources/ntp4/tile_page.js b/chrome/browser/resources/ntp4/tile_page.js
index ca032caa2a22c2196ef3b2f7ab8c1a4dfbebe2a5..d1cead7c3af3d007b42418c71ba123127e9ecf00 100644
--- a/chrome/browser/resources/ntp4/tile_page.js
+++ b/chrome/browser/resources/ntp4/tile_page.js
@@ -60,7 +60,7 @@ cr.define('ntp', function() {
this.addEventListener('dragend', this.onDragEnd_);
this.firstChild.addEventListener(
- 'webkitAnimationEnd', this.onContentsAnimationEnd_.bind(this));
+ 'animationend', this.onContentsAnimationEnd_.bind(this));
this.eventTracker = new EventTracker();
},
@@ -120,7 +120,7 @@ cr.define('ntp', function() {
this.dragClone.style.right = '';
this.dragClone.classList.add('drag-representation');
$('card-slider-frame').appendChild(this.dragClone);
- this.eventTracker.add(this.dragClone, 'webkitTransitionEnd',
+ this.eventTracker.add(this.dragClone, 'transitionend',
this.onDragCloneTransitionEnd_.bind(this));
this.classList.add('dragging');
@@ -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)';
},
/**
@@ -273,7 +273,7 @@ cr.define('ntp', function() {
this.dragClone = null;
clone.parentNode.removeChild(clone);
- this.eventTracker.remove(clone, 'webkitTransitionEnd');
+ this.eventTracker.remove(clone, 'transitionend');
this.classList.remove('dragging');
if (this.firstChild.finalizeDrag)
this.firstChild.finalizeDrag();
@@ -304,7 +304,7 @@ cr.define('ntp', function() {
},
/**
- * Callback for the webkitAnimationEnd event on the tile's contents.
+ * Callback for the animationend event on the tile's contents.
* @param {Event} e The event object.
*/
onContentsAnimationEnd_: function(e) {

Powered by Google App Engine
This is Rietveld 408576698