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

Unified Diff: chrome/common/extensions/docs/examples/api/document_scan/scan.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/document_scan/scan.css
diff --git a/chrome/common/extensions/docs/examples/api/document_scan/scan.css b/chrome/common/extensions/docs/examples/api/document_scan/scan.css
index 08a43853507bb861e66a4b5e2aa3d63df157b518..899b0f6f33459a262d8690d9211439ce0f187535 100644
--- a/chrome/common/extensions/docs/examples/api/document_scan/scan.css
+++ b/chrome/common/extensions/docs/examples/api/document_scan/scan.css
@@ -22,7 +22,6 @@
left: 50%;
margin-left: -30px;
margin-top: -30px;
- -webkit-animation: rotation .6s infinite linear;
animation: rotation .6s infinite linear;
border-left:6px solid rgba(180,174,239,.15);
border-right:6px solid rgba(180,174,239,.15);
@@ -31,7 +30,7 @@
border-radius:100%;
}
-@-webkit-keyframes rotation {
- from {-webkit-transform: rotate(0deg);}
- to {-webkit-transform: rotate(359deg);}
+@keyframes rotation {
+ from {transform: rotate(0deg);}
+ to {transform: rotate(359deg);}
}

Powered by Google App Engine
This is Rietveld 408576698