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

Unified Diff: chrome/test/data/webui/print_preview.js

Issue 893403004: webui: make 0 into 0ms when it's a <time>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/test/data/webui/print_preview.js
diff --git a/chrome/test/data/webui/print_preview.js b/chrome/test/data/webui/print_preview.js
index 3a5037ee78c05a6b864ff0201ed7644e6ad4a44f..55425bb0a6904230f30e1aab01ef4bbf69497fd3 100644
--- a/chrome/test/data/webui/print_preview.js
+++ b/chrome/test/data/webui/print_preview.js
@@ -192,10 +192,10 @@ PrintPreviewWebUITest.prototype = {
var noAnimationStyle = document.createElement('style');
noAnimationStyle.textContent =
'* {' +
- ' -webkit-transition-duration: 0s !important;' +
- ' -webkit-transition-delay: 0s !important;' +
- ' -webkit-animation-duration: 0s !important;' +
- ' -webkit-animation-delay: 0s !important;' +
+ ' -webkit-transition-duration: 0ms !important;' +
+ ' -webkit-transition-delay: 0ms !important;' +
+ ' -webkit-animation-duration: 0ms !important;' +
+ ' -webkit-animation-delay: 0ms !important;' +
'}';
document.querySelector('head').appendChild(noAnimationStyle);
}

Powered by Google App Engine
This is Rietveld 408576698