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

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

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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/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 84f2514d0ec93347ea9dde03fd3fcc4aeef79f48..be6a08db129b4463be6cd2f8bce4b5a3a7816363 100644
--- a/chrome/browser/resources/net_internals/hsts_view.js
+++ b/chrome/browser/resources/net_internals/hsts_view.js
@@ -186,11 +186,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';
setTimeout(function() {
- element.style.webkitTransitionDuration = '1000ms';
+ element.style.transitionDuration = '1000ms';
element.style.backgroundColor = '#fff';
}, 0);
}
« no previous file with comments | « chrome/browser/resources/local_ntp/most_visited_single.js ('k') | chrome/browser/resources/ntp4/apps_page.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698