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); |
} |