Commit 94499aeb authored by fukino's avatar fukino Committed by Commit bot

Use requestAnimationFrame() instead of vendor-specific version.

BUG=411790
TEST=manually confirmed

Review URL: https://codereview.chromium.org/552663003

Cr-Commit-Position: refs/heads/master@{#293874}
parent 41d1beae
......@@ -248,7 +248,7 @@ cr.define('cr.ui', function() {
* @param {Event} e The 'change' or 'splice' event.
*/
handleChangeList_: function(e) {
webkitRequestAnimationFrame(this.header_.updateWidth.bind(this.header_));
requestAnimationFrame(this.header_.updateWidth.bind(this.header_));
},
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment