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

Unified Diff: chrome/common/extensions/docs/examples/api/downloads/download_manager/popup.css

Issue 2534693002: Reduce usage of webkit prefixes in extension examples (Closed)
Patch Set: rebase 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/common/extensions/docs/examples/api/downloads/download_manager/popup.css
diff --git a/chrome/common/extensions/docs/examples/api/downloads/download_manager/popup.css b/chrome/common/extensions/docs/examples/api/downloads/download_manager/popup.css
index bc19d1e99792b41d705b1f198677a82972b686a8..72c73fcb33f83deadaeac84dc5ebf7920101dab6 100644
--- a/chrome/common/extensions/docs/examples/api/downloads/download_manager/popup.css
+++ b/chrome/common/extensions/docs/examples/api/downloads/download_manager/popup.css
@@ -203,11 +203,11 @@ svg rect.border {
z-index: 1;
-webkit-background-size: 50px 50px;
background-size: 50px 50px;
- -webkit-animation: move 2s linear infinite;
+ animation: move 2s linear infinite;
overflow: hidden;
}
-@-webkit-keyframes move {
+@keyframes move {
0% { background-position: 0 0; }
100% { background-position: 50px 50px; }
}

Powered by Google App Engine
This is Rietveld 408576698