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

Unified Diff: Source/WebCore/css/html.css

Issue 13723005: <blink> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/css/html.css
diff --git a/Source/WebCore/css/html.css b/Source/WebCore/css/html.css
index dcb2ca10a1b74cdbb9c29955e1d4afb89d14523c..970b04ea622c329e4acfca192082bd3610f1107e 100644
--- a/Source/WebCore/css/html.css
+++ b/Source/WebCore/css/html.css
@@ -1193,6 +1193,18 @@ nobr {
white-space: nowrap
}
+@-webkit-keyframes blink {
+ from { opacity: 1.0; }
+ to { opacity: 0.0; }
+}
+
+blink {
+ -webkit-animation-name: blink;
+ -webkit-animation-iteration-count: infinite;
+ -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
+ -webkit-animation-duration: 1s;
Mike West 2013/04/05 16:44:07 1s seems arbitrary. What do other browsers do here
M-A Ruel 2013/04/05 16:49:52 It's the right value. " The United States Federal
Avi (use Gerrit) 2013/04/05 22:00:07 According to Wikipedia, "In Mozilla Firefox the te
+}
+
/* states */
:focus {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698