Chromium Code Reviews| 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); |
| } |