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

Unified Diff: chrome/common/extensions/docs/templates/articles/api_other.html

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/templates/articles/api_other.html
diff --git a/chrome/common/extensions/docs/templates/articles/api_other.html b/chrome/common/extensions/docs/templates/articles/api_other.html
index f59f41797b9462f3725934d1e59f592a96d8791f..3d0581aa7fcb8df63b550d537852c0daceba8b05 100644
--- a/chrome/common/extensions/docs/templates/articles/api_other.html
+++ b/chrome/common/extensions/docs/templates/articles/api_other.html
@@ -100,8 +100,8 @@ E.g. window.open(someUrl). --></dd>
to make the UI spin:
<pre>&lt;style>
div:hover {
- -webkit-transform: rotate(360deg);
- -webkit-transition: all 1s ease-out;
+ transform: rotate(360deg);
+ transition: all 1s ease-out;
}
&lt;/style>
</pre>

Powered by Google App Engine
This is Rietveld 408576698