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

Unified Diff: chrome/browser/resources/net_internals/hsts_view.js

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years 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/net_internals/hsts_view.js
diff --git a/chrome/browser/resources/net_internals/hsts_view.js b/chrome/browser/resources/net_internals/hsts_view.js
index fae98f082fc486e20b24b4e1eb02593880d58e8f..1b2e4c0e033fe8512e403557e2db009502b7df5a 100644
--- a/chrome/browser/resources/net_internals/hsts_view.js
+++ b/chrome/browser/resources/net_internals/hsts_view.js
@@ -180,11 +180,11 @@ var HSTSView = (function() {
}
function yellowFade(element) {
- element.style.webkitTransitionProperty = 'background-color';
- element.style.webkitTransitionDuration = '0';
+ element.style.transitionProperty = 'background-color';
+ element.style.transitionDuration = '0';
element.style.backgroundColor = '#fffccf';
Eric Willigers 2016/11/30 02:06:52 I have left these unsorted.
setTimeout(function() {
- element.style.webkitTransitionDuration = '1000ms';
+ element.style.transitionDuration = '1000ms';
element.style.backgroundColor = '#fff';
}, 0);
}

Powered by Google App Engine
This is Rietveld 408576698