CINXE.COM
CSS Working Group Editor Drafts
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html lang='en'><head><meta content='text/html; charset=utf-8' http-equiv='Content-Type'><title>CSS Working Group Editor Drafts</title><link href='/local/img/cssicon.png' rel='icon' type='image/png'><link href='/core/stylesheets/base.css' rel='stylesheet' type='text/css'><link href='/core/stylesheets/system.css' rel='stylesheet' type='text/css'><link href='/stylesheets/drafts.css' rel='stylesheet' type='text/css'><style type='text/css'><!-- .body img { float: left; margin-right: 1em; } .warning { color: #08F; font-weight: bold; } .link-error { color: #AA0; font-wieght: bold; } .error { color: #D00; font-weight: bold; } --></style><link href='/stylesheets/historypage.css' rel='stylesheet' type='text/css'><script nonce='fphjYm8cw4xMsqWIdlMJnuP/cKEhEyrXVH6R2Mqjlcg=' type='text/javascript'><!-- var gCookieDomain=".drafts.csswg.org";var gCookiePath="\/";var gCookiePrefix="drafts_";var gUserId=false;if(!Array.indexOf){Array.prototype.indexOf=function(obj){for(var index=0;index<this.length;index++){if(this[index]==obj){return index;}}return-1;}}try{if(1!=Node.ELEMENT_NODE){throw true;}}catch(exc){var Node={ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3};}var system={mAPIXHR:null,mAPITimer:null,mAPIQueue:[],commonPrefix:function(string1,string2){var prefix='';var length=((string1.length<string2.length)?string1.length:string2.length);var index=-1;while((++index<length)&(string1[index]==string2[index])){prefix+=string1[index];}return prefix;},getCookie:function(name){var cookies=document.cookie.split(';');name+='=';var prefixedName=gCookiePrefix+name;for(var index=0;index<cookies.length;index++){cookie=cookies[index].trim();if(prefixedName==cookie.substring(0,prefixedName.length)){return unescape(cookie.substring(prefixedName.length));}if(name==cookie.substring(0,name.length)){return unescape(cookie.substring(name.length));}}return null;},setCookie:function(name,value){if(null==value){var expDate=new Date();expDate.setDate(expDate.getDate()-1);document.cookie=gCookiePrefix+name+'=; expires='+expDate.toGMTString()+'; '+'domain='+gCookieDomain+'; path='+gCookiePath;}else{document.cookie=gCookiePrefix+name+'='+escape(value)+'; expires=0; '+'domain='+gCookieDomain+'; path='+gCookiePath;}},hasClass:function(element,className){if(element&&('className'in element)){var classes=element.className.split(' ');if(-1<classes.indexOf(className)){return true;}}return false;},addClass:function(element,className){if(element){var classes=(('className'in element)?element.className.split(' '):new Array());if(-1==classes.indexOf(className)){classes.push(className);element.className=classes.join(' ');}}},removeClass:function(element,className){if(element){var classes=(('className'in element)?element.className.split(' '):new Array());var index;while(-1<(index=classes.indexOf(className))){classes.splice(index,1);}element.className=classes.join(' ');}},findChildWithClass:function(element,className){if(element){var children=element.children;if(children){for(var index=0;index<children.length;index++){var child=children[index];if((child.nodeType==Node.ELEMENT_NODE)&&this.hasClass(child,className)){return child;}}}}return null;},getFirstElementChild:function(element){if(element){var children=element.children;for(var index=0;index<children.length;index++){var child=children[index];if(child.nodeType==Node.ELEMENT_NODE){return child;}}}return null;},iterateElementChildren:function(element,callback){if(element){var children=Array();for(var index=0;index<element.children.length;index++){var child=element.children[index];if(child.nodeType==Node.ELEMENT_NODE){children.push(child);}}for(var index=0;index<children.length;index++){var child=children[index];var result=callback(child,index);if(result){return result;}}}return false;},isLoggedIn:function(){var login=document.getElementById('login');return(login&&this.hasClass(login,'loggedin'));},toggleLoginMenu:function(){var login=document.getElementById('login');if(login){if(this.hasClass(login,'open')){this.removeClass(login,'open');}else{this.addClass(login,'open');}}},updatePageURI:function(uri){var login=document.getElementById('login');if(login){var a=system.createElement('a',{'href':uri});uri=a.pathname;system.iterateElementChildren(login,function(div,index){system.iterateElementChildren(div,function(item,index){if(item.hasAttribute('href')){var href=item.getAttribute('href');var index=href.indexOf('/return/');if(0<=index){var prefix=system.commonPrefix(uri,item.pathname);item.setAttribute('href',href.substring(0,index)+'/return/'+uri.substring(prefix.length));}}});});}},createProgressIcon:function(){var progress=this.createElement('span',{'class':'progress p1'});progress.setAttribute('data-timer',setInterval(function(){var state=progress.className.slice(-1);state=(state-0+1)%8;progress.className='progress p'+state;},125));return progress;},removeProgressIcon:function(progress){if(progress){clearInterval(progress.getAttribute('data-timer')-0);if(progress.parentNode){progress.parentNode.removeChild(progress);}}},addLoadEvent:function(onLoad){try{var oldOnLoad=window.onload;if('function'!=typeof(window.onload)){window.onload=onLoad;}else{window.onload=function(){if(oldOnLoad){oldOnLoad();}onLoad();}}}catch(err){}},createElement:function(tagName,attrs,textContent){var element=document.createElement(tagName);if(attrs){for(attr in attrs){if(attrs.hasOwnProperty(attr)){if('id'==attr){element.id=attrs.id;}else if('className'==attr){element.className=attrs.className;}else if(attrs[attr]){element.setAttribute(attr,attrs[attr]);}}}}if(textContent){element.textContent=textContent;}return element;},emptyElement:function(element){if(element){while(element.lastChild){element.removeChild(element.lastChild);}}},addFormData:function(form,name,value){if(form){var hidden=this.createElement('input',{'type':'hidden','name':name,'value':value});form.appendChild(hidden);}},addUserHyperLink:function(parent,user){var userName=(user&&user.name ?((user.name.toLowerCase()==user.full_name.toLowerCase())?user.full_name:user.name):'Anonymous User');var title=(user&&user.full_name&&user.name&&(user.full_name.toLowerCase()!=user.name.toLowerCase())?user.full_name:'');var email=(user&&user.email&&user.display_email ?user.email:'');var uri=(user&&user.uri ?user.uri:'');if(email){parent.appendChild(this.createElement('a',{'href':'mailto:'+email,'title':title},userName));}else if(uri){parent.appendChild(this.createElement('a',{'href':uri,'title':title},userName));}else{parent.appendChild(this.createElement('span',{'title':title},userName));}},_processAPIQueue:function(){var call=this.mAPIQueue.shift();if(call){if(!this.mAPIXHR){this.mAPIXHR=new XMLHttpRequest();}this.mAPIXHR.onreadystatechange=function(){if(4==system.mAPIXHR.readyState){if(call.callback){var response=false;try{if('json'==call.type){response=JSON.parse(system.mAPIXHR.responseText);}else if('xml'==call.type){response=system.mAPIXHR.responseXML.documentElement}}catch(err){}try{call.callback(system.mAPIXHR.status,response);}catch(err){if(call.progress){system.removeProgressIcon(call.progress);}throw err;}}if(call.progress){system.removeProgressIcon(call.progress);}this.mAPITimer=setTimeout(function(){system._processAPIQueue()},10);}};try{this.mAPIXHR.open(call.method,call.uri,true);if(call.callback){this.mAPIXHR.setRequestHeader('Accept','application/json');}if('POST'==call.method){this.mAPIXHR.setRequestHeader('Content-type','application/x-www-form-urlencoded');this.mAPIXHR.setRequestHeader('Content-length',call.data.length);}if('xml'==call.type){this.mAPIXHR.responseType='document';}else{this.mAPIXHR.responseType='';}this.mAPIXHR.send(call.data);}catch(err){if(call.progress){system.removeProgressIcon(call.progress);}this.mAPITimer=setTimeout(function(){system._processAPIQueue()},10);throw err;}}else{this.mAPITimer=null;}},callAPI:function(method,uri,data,type,callback,progressTarget,priority){var progress=null;if(progressTarget){progress=this.createProgressIcon();progressTarget.parentNode.insertBefore(progress,progressTarget.nextSibling);}var call={method:method,uri:uri,type:type,data:data,callback:callback,progress:progress};if(priority){this.mAPIQueue.unshift(call);}else{this.mAPIQueue.push(call);}if(null===this.mAPITimer){this.mAPITimer=setTimeout(function(){system._processAPIQueue()},10);}},encodeParams:function(params,arrayName){var paramString='';for(param in params){if(params.hasOwnProperty(param)){if(paramString){paramString+='&';}var name=param;if(arrayName){name=arrayName+'['+param+']';}if(Array.isArray(params[param])){for(var index=0;index<params[param].length;index++){paramString+=name+'[]='+params[param][index];}}else if('object'==typeof(params[param])){paramString+=this.encodeParams(params[param],param);}else if('boolean'==typeof(params[param])){paramString+=name+'='+(params[param]+0);}else{paramString+=name+'='+encodeURIComponent(params[param]);}}}return paramString;},getXML:function(uri,params,callback,progressTarget,priority){if(null==params){params={};}var paramString=this.encodeParams(params);this.callAPI('GET',uri+'?'+paramString,null,'xml',callback,progressTarget,priority);},callAPIGet:function(uri,params,callback,progressTarget,priority){if(null==params){params={};}var loginKey=this.getCookie('loginkey');if(loginKey){params.loginkey=loginKey;}var paramString=this.encodeParams(params);this.callAPI('GET',uri+'?'+paramString,null,'json',callback,progressTarget,priority);},callAPIPost:function(uri,params,callback,progressTarget,priority){if(null==params){params={};}var loginKey=this.getCookie('loginkey');if(loginKey){params.loginkey=loginKey;}var data=this.encodeParams(params);this.callAPI('POST',uri,data,'json',callback,progressTarget,priority);},abortAPICall:function(){if(this.mAPIXHR){if((4!=this.mAPIXHR.readyState)&&(0!=this.mAPIXHR.readyState)){this.mAPIXHR.abort();}}},setMenuAlert:function(menuId,state){var menuLink=document.getElementById(menuId);if(menuLink){if(state){if(!this.hasClass(menuLink,'alert')){var icon=this.createElement('span',{'class':'icon alert','style':'top: -14px ! important'});menuLink.appendChild(icon);this.addClass(menuLink,'alert');setTimeout(function(){icon.setAttribute('style','top: '+(menuLink.offsetTop+3)+'px');},100);}}else{if(this.hasClass(menuLink,'alert')){var icon=menuLink.lastChild;icon.setAttribute('style','top: -14px ! important');this.removeClass(menuLink,'alert');setTimeout(function(){menuLink.removeChild(icon);},500);}}}}}; // --></script><script nonce='fphjYm8cw4xMsqWIdlMJnuP/cKEhEyrXVH6R2Mqjlcg=' type='text/javascript'><!-- var gUserRole=null;var gSystemAPIURI="\/api\/system\/";Stream=function(uri,params,callback){this.xhr=new XMLHttpRequest();this.callback=callback;this.persist=false;if(!params){params={};}var loginKey=system.getCookie('loginkey');if(loginKey){params['loginkey']=loginKey;}params['stream']=++this.gStreamId;this.uri=(params ?uri+'?'+system.encodeParams(params):uri);var stream=this;this.xhr.onreadystatechange=function(){if((200==stream.xhr.status)&&((3==stream.xhr.readyState)||(4==stream.xhr.readyState))){var message=stream.xhr.responseText.substring(stream.processed);if(-1!=message.indexOf("\uEE00\uEEFF\uEE00")){var messages=message.split("\uEE00\uEEFF\uEE00");for(var index=0;index<(messages.length-1);index++){message=messages[index];stream.processed+=(message.length+3);try{response=JSON.parse(message.trim());}catch(err){console.log("stream parse error: "+message.trim());console.log(err);continue;}stream.callback(response.message,response.data);}}if(4==stream.xhr.readyState){if(stream.persist&&(!stream.closed)){setTimeout(function(){if(!stream.closed){stream.connect();}},10);}stream.closed=true;}}};this.connect();return this;};Stream.prototype={gStreamId:Math.floor(Math.random()*0xFFFFFFFF),connect:function(){this.processed=0;this.closed=false;this.xhr.open('GET',this.uri,true);this.xhr.setRequestHeader('Accept','application/json');this.xhr.send();},close:function(){this.closed=true;if((4!=this.xhr.readyState)&&(0!=this.xhr.readyState)){this.xhr.abort();}},setTimeout:function(callback,timeoutMS){this.xhr.timeout=timeoutMS;var stream=this;this.xhr.ontimeout=function(){stream.closed=true;callback(stream);};},}; // --></script><script nonce='fphjYm8cw4xMsqWIdlMJnuP/cKEhEyrXVH6R2Mqjlcg=' type='text/javascript'><!-- // --></script><script nonce='fphjYm8cw4xMsqWIdlMJnuP/cKEhEyrXVH6R2Mqjlcg=' type='text/javascript'><!-- var gDraftAPIURI="https:\/\/drafts.csswg.org\/api\/drafts\/";var gRepo="csswg";var gDate=false;var gBranch=null;var gHead=null;var gRepoPath="css-animations-1\/Overview.bs";var gPage=1;var gUpdateStream=null;function updateTBody(tbody,data){return system.iterateElementChildren(tbody,function(tr,rowIndex){if(tr.getAttribute('data-revised-hash')==data.revised_changeset.hash){var icon=tr.lastElementChild.lastElementChild;icon.className=data.type+' '+data.status;return true;}});}function updateTable(table,data){return system.iterateElementChildren(table,function(tbody,tbodyIndex){if('TBODY'==tbody.tagName){return updateTBody(tbody,data);}});}function updateDraft(message,data){if('revised'==data.revision_status){var historyTable=document.getElementById('history_table');if(!updateTable(historyTable,data)){if((1==gPage)&&(data.source_path.split('/').length<=2)){window.location.reload();}}}}function startStream(){gUpdateStream=new Stream(gDraftAPIURI,{'repo':gRepo,'date':gDate,'branch':gBranch,'head':gHead,'path':gRepoPath},updateDraft);gUpdateStream.persist=true;}function setupPage(){startStream();}system.addLoadEvent(setupPage); // --></script></head><body><div class='header'><div class='logo'><a href='http://www.w3.org/' rel='home'><img alt='W3C' src='/core/img/logo-w3c-screen-sm.png'></a></div><div class='login' id='login'><div><a href='/login/return/history/css-animations-1/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-animations-1/'>Home</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 1</span><span class='icon button next disabled'></span><span class='icon button last disabled'></span></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-animations-1/Overview.html:</h3><table class='list tbody' id='history_table'><thead><tr><th>Uploaded</th><th>Revised</th><th>By</th><th>Comment</th><th></th></tr></thead><tbody><th colspan='5'>2025-01-31</th><tr data-revised-hash='fb9fbb0fa99075d4008cc89bcf6cd734baab0e85'><td><a href='/date/2025-01-31T08:07:51/css-animations-1/'>08:07:51 PST</a></td><td>2025-01-31 08:06:57 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-animations] Comment out old issues list differently. Also add current issues list to css-animations-2.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fb9fbb0fa99075d4008cc89bcf6cd734baab0e85/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2025-01-31T08:07:51/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2025-01-28</th><tr data-revised-hash='b68653a977384472b78d5d5ae286ffa4d5d92e5a'><td><a href='/date/2025-01-28T18:45:23/css-animations-1/'>18:45:23 PST</a></td><td>2025-01-28 18:43:29 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Fix some mismatched tag and metadata errors. This fixes some mismatched tag and metadata errors (and a few other things) that have recently become bikeshed errors and were preventing these specs from generating without ignoring fatal errors.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b68653a977384472b78d5d5ae286ffa4d5d92e5a/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2025-01-28T18:45:23/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-12-11</th><tr data-revised-hash='028e525ed6467462b608d17604c0cd2da4f6714f'><td><a href='/date/2023-12-11T13:53:11/css-animations-1/'>13:53:11 PST</a></td><td>2023-12-08 04:31:36 PST</td><td><span title='Emilio Cobos Álvarez'>emilio</span></td><td>[cssom] [css-fonts] [css-page] Sort out properties and descriptors. This is intended to address #5649.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/028e525ed6467462b608d17604c0cd2da4f6714f/css-animations-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-06-07</th><tr data-revised-hash='8d58b974e2b220f1506557c3ffb51ea6fcb0a101'><td><a href='/date/2023-06-07T08:02:17/css-animations-1/'>08:02:17 PDT</a></td><td>2023-06-02 13:05:38 PDT</td><td><span>fantasai</span></td><td>[css-animations-1] Fix notes: these are normative statements.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8d58b974e2b220f1506557c3ffb51ea6fcb0a101/css-animations-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-06-07T08:02:17/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-05-07</th><tr data-revised-hash='c50a5d2a869c0ead4fb98cb32e951e55cdd96f11'><td><a href='/date/2023-05-07T21:39:40/css-animations-1/'>21:39:40 PDT</a></td><td>2023-04-04 14:32:31 PDT</td><td><span>fantasai</span></td><td>[css-animations-1][css-animations-2] Define 'animation-*' as a coordinated list property group.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c50a5d2a869c0ead4fb98cb32e951e55cdd96f11/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-05-07T21:39:40/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-02-27</th><tr data-revised-hash='1efc4eca93b7d15e06540c6fb710bc2a58d73d78'><td><a href='/date/2023-02-27T10:16:21/css-animations-1/'>10:16:21 PST</a></td><td>2023-02-27 09:46:14 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-animations-1] Changes for WD</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1efc4eca93b7d15e06540c6fb710bc2a58d73d78/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-02-27T10:16:21/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-02-22</th><tr data-revised-hash='2739f046c29ac57b896b82de2f5676bd819c3c6e'><td><a href='/date/2023-02-22T09:02:53/css-animations-1/'>09:02:53 PST</a></td><td>2023-02-22 08:59:42 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-animations-1][css-animations-2] Update editor affilliations #8464</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2739f046c29ac57b896b82de2f5676bd819c3c6e/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-02-22T09:02:53/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-02-21</th><tr data-revised-hash='401bdf6b93957c9628f4fba47f31cb4939dfe8dc'><td><a href='/date/2023-02-21T09:13:24/css-animations-1/'>09:13:24 PST</a></td><td>2023-02-21 09:12:11 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-animations-1] Update dbaron affilliation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/401bdf6b93957c9628f4fba47f31cb4939dfe8dc/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-02-21T09:13:24/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='6efcbb926b57ab88a586dbf63c30544f248bf888'><td><a href='/date/2023-02-21T09:09:40/css-animations-1/'>09:09:40 PST</a></td><td>2023-02-21 09:08:32 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-animations-1] Add Changes list since 2018, #8464</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6efcbb926b57ab88a586dbf63c30544f248bf888/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-02-21T09:09:40/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-11-20</th><tr data-revised-hash='c47210a2c30f8eb1e6fa0f3c9730cb37375146ca'><td><a href='/date/2022-11-20T19:33:21/css-animations-1/'>19:33:21 PST</a></td><td>2022-10-16 18:26:38 PDT</td><td><span title='Brian Birtles (via Travis)'>brian_birtles__via_travis_</span></td><td>[css-animations-1] Define indexed property getter for CSSKeyframesRule</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c47210a2c30f8eb1e6fa0f3c9730cb37375146ca/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-11-20T19:33:21/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-07-15</th><tr data-revised-hash='14de636cc0b73ac2cf36b3a4d94a23e24a72bbf9'><td><a href='/date/2022-07-15T11:46:41/css-animations-1/'>11:46:41 PDT</a></td><td>2022-07-15 11:44:49 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Move images used in specs into subdirectories that bikeshed echidna will automatically package. Fixes most of #7505.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/14de636cc0b73ac2cf36b3a4d94a23e24a72bbf9/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-07-15T11:46:41/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-07-06</th><tr data-revised-hash='15be865831b6aad58452504d89554aa4043121b5'><td><a href='/date/2022-07-06T18:34:59/css-animations-1/'>18:34:59 PDT</a></td><td>2022-07-03 21:17:16 PDT</td><td><span title='Brian Birtles (via Travis)'>brian_birtles__via_travis_</span></td><td>Add constructor type on AnimationEvent's definition</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/15be865831b6aad58452504d89554aa4043121b5/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-07-06T18:34:59/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-06-29</th><tr data-revised-hash='8560172e50971be905e6d576692be7d990614969'><td><a href='/date/2022-06-29T01:09:58/css-animations-1/'>01:09:58 PDT</a></td><td>2022-06-23 12:21:32 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>Add required unit for dimension in range notation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8560172e50971be905e6d576692be7d990614969/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-29T01:09:58/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-06-08</th><tr data-revised-hash='0805d8c0d42165adc94b41199581a5d656bea425'><td><a href='/date/2022-06-08T00:33:14/css-animations-1/'>00:33:14 PDT</a></td><td>2022-06-07 23:56:15 PDT</td><td><span title='Dominique Hazael-Massieux'>dominique_hazael_massieux</span></td><td>Associate event definitions with their EventHandler container As done by other specs</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0805d8c0d42165adc94b41199581a5d656bea425/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-08T00:33:14/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-06-03</th><tr data-revised-hash='fa109aefb37f298d5b37ec97eccdd691bfd0c8a3'><td><a href='/date/2022-06-03T08:41:26/css-animations-1/'>08:41:26 PDT</a></td><td>2022-06-03 08:40:23 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-animations-1] Fix mix of tabs and spaces in one section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fa109aefb37f298d5b37ec97eccdd691bfd0c8a3/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-03T08:41:26/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-07-15</th><tr data-revised-hash='cbd0a28020425a8895189fa8c6aa408d5d8dfcf4'><td><a href='/date/2021-07-15T00:58:39/css-animations-1/'>00:58:39 PDT</a></td><td>2021-07-15 00:28:17 PDT</td><td><span title='Cameron McCormack'>heycam</span></td><td>[css-animations-1] Mark up productions</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cbd0a28020425a8895189fa8c6aa408d5d8dfcf4/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-07-15T00:58:39/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-01-07</th><tr data-revised-hash='7541ad537cbed9c5e19025f2a61ba85a3e7a5d23'><td><a href='/date/2021-01-07T04:46:27/css-animations-1/'>04:46:27 PST</a></td><td>2021-01-07 04:46:08 PST</td><td><a href='http://rachelandrew.co.uk'>rachelandrew</a></td><td>Updating typo in CSSKeyframesRule.findRule I was documenting this over at MDN and spotted that the information for `select` in findRule mentioned the "rule to be deleted", I think this should be "found".</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7541ad537cbed9c5e19025f2a61ba85a3e7a5d23/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-01-07T04:46:27/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-09-18</th><tr data-revised-hash='6184bac8cb021eb858f4ee36559aad2fc9790aa3'><td><a href='/date/2020-09-18T15:42:57/css-animations-1/'>15:42:57 PDT</a></td><td>2020-09-18 14:48:54 PDT</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td>Removed duplicate "keywords" from Value Definitions section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6184bac8cb021eb858f4ee36559aad2fc9790aa3/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-18T15:42:57/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-08-18</th><tr data-revised-hash='100524003d20b1ae342f6daf59fdeda09590279c'><td><a href='/date/2020-08-18T16:32:25/css-animations-1/'>16:32:25 PDT</a></td><td>2020-08-18 16:31:56 PDT</td><td><span title='Brian Birtles (via Travis)'>brian_birtles__via_travis_</span></td><td>[css-animations-1] Fix indentation after automated spec change</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/100524003d20b1ae342f6daf59fdeda09590279c/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-18T16:32:25/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='c870b53021e2ae20b4096e96ca778bf4159c1658'><td><a href='/date/2020-08-18T14:13:10/css-animations-1/'>14:13:10 PDT</a></td><td>2020-08-18 09:33:42 PDT</td><td><span>autokagami</span></td><td>[css-animations-1] Align with Web IDL specification</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c870b53021e2ae20b4096e96ca778bf4159c1658/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-18T14:13:10/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-01-16</th><tr data-revised-hash='fbc565e83f1ec2cf382c43e7931c533dc77e07cf'><td><a href='/date/2020-01-16T16:21:27/css-animations-1/'>16:21:27 PST</a></td><td>2020-01-16 16:20:52 PST</td><td><span>fantasai</span></td><td>[meta] Align value definition reference across all specs. Use more obvious heading. Include link to definition syntax directly. #1397</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbc565e83f1ec2cf382c43e7931c533dc77e07cf/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2020-01-16T16:21:27/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-30</th><tr data-revised-hash='ded9133296f168a682f0e67ff326665f70d54b95'><td><a href='/date/2019-09-30T21:35:43/css-animations-1/'>21:35:43 PDT</a></td><td>2019-09-30 03:10:22 PDT</td><td><span>autokagami</span></td><td>[css-animations-1] Align with Web IDL specification</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ded9133296f168a682f0e67ff326665f70d54b95/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-09-30T21:35:43/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-08</th><tr data-revised-hash='bcae1ececb0591a9f8eeddbedb7ebb4a0cfa2afe'><td><a href='/date/2019-09-08T16:32:24/css-animations-1/'>16:32:24 PDT</a></td><td>2019-09-03 23:08:50 PDT</td><td><span title='Roman Dvornov'>roman_dvornov</span></td><td>[css-animations-1][css-backgrounds-4][css-fonts-4] Fix multiplier usage in propdef/descdef</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bcae1ececb0591a9f8eeddbedb7ebb4a0cfa2afe/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-09-08T16:32:24/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-08-22</th><tr data-revised-hash='49e69be7d007ad1a452c74dbb431dac7fb7021a9'><td><a href='/date/2019-08-22T16:40:59/css-animations-1/'>16:40:59 PDT</a></td><td>2019-08-20 07:21:07 PDT</td><td><span title='Kagami Sascha Rosylight'>kagami_sascha_rosylight</span></td><td>Add default dictionary value</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/49e69be7d007ad1a452c74dbb431dac7fb7021a9/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-08-22T16:40:59/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-07-16</th><tr data-revised-hash='d48c403a77a1a83af18d113af7270415e2c62ae7'><td><a href='/date/2019-07-16T19:11:44/css-animations-1/'>19:11:44 PDT</a></td><td>2019-07-16 19:10:57 PDT</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1] Fix example 3 This fixes #4118.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d48c403a77a1a83af18d113af7270415e2c62ae7/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-07-16T19:11:44/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='7d6a8cf1bea97d3687f54aa1b7b4e7efd9ece9e6'><td><a href='/date/2019-07-16T18:24:43/css-animations-1/'>18:24:43 PDT</a></td><td>2019-07-16 18:23:58 PDT</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1] Fix indentiation of deleteRule section See #4120.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7d6a8cf1bea97d3687f54aa1b7b4e7efd9ece9e6/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-07-16T18:24:43/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='2c65481bad081ba0a6dbad7f8c56d1a20763a957'><td><a href='/date/2019-07-16T18:22:11/css-animations-1/'>18:22:11 PDT</a></td><td>2019-07-16 18:19:28 PDT</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1] Tweak wording and formatting of 0s animation-duration description Fixes #4120.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c65481bad081ba0a6dbad7f8c56d1a20763a957/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-07-16T18:22:11/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-07-05</th><tr data-revised-hash='5d53a881ecd28588ce41f80b8963ca6f1424da17'><td><a href='/date/2019-07-05T17:13:38/css-animations-1/'>17:13:38 PDT</a></td><td>2019-07-05 17:13:21 PDT</td><td><span>ewilligers</span></td><td>[css-animations-1] animation-delay is not animatable (#4089)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5d53a881ecd28588ce41f80b8963ca6f1424da17/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-07-05T17:13:38/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-05-12</th><tr data-revised-hash='aa404a9e6bf9b8a975412e519794d55bf96500b2'><td><a href='/date/2019-05-12T17:51:20/css-animations-1/'>17:51:20 PDT</a></td><td>2019-05-12 17:51:05 PDT</td><td><span>ewilligers</span></td><td>[css-animations] [css-transitions] [css-values] easing (#3922) Link to easing-function instead of the defunct timing-function.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aa404a9e6bf9b8a975412e519794d55bf96500b2/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-12T17:51:20/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-11-08</th><tr data-revised-hash='2d7364e9dc04b95b85d722d70d4c317b4f23b6fc'><td><a href='/date/2018-11-08T15:59:20/css-animations-1/'>15:59:20 PST</a></td><td>2018-11-08 05:33:35 PST</td><td><span title='Kagami Sascha Rosylight'>kagami_sascha_rosylight</span></td><td>GlobalEventHandlers is a mixin</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2d7364e9dc04b95b85d722d70d4c317b4f23b6fc/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-11-08T15:59:20/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-10-10</th><tr data-revised-hash='acea3bc4ad631df166bea104ac7f85d565f6fd31'><td><a href='/date/2018-10-10T18:36:58/css-animations-1/'>18:36:58 PDT</a></td><td>2018-10-10 18:36:37 PDT</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1] Add link to latest published WD</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/acea3bc4ad631df166bea104ac7f85d565f6fd31/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-10-10T18:36:58/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-10-09</th><tr data-revised-hash='9beee45f352e4caa0251c36df075d2cd623ec1b7'><td><a href='/date/2018-10-09T23:15:39/css-animations-1/'>23:15:39 PDT</a></td><td>2018-10-09 23:13:56 PDT</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-transitions-1][css-animations-1][web-animations-1] Update links to renamed CSS Easing Functions nee CSS Timing Functions</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9beee45f352e4caa0251c36df075d2cd623ec1b7/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-10-09T23:15:39/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-09-26</th><tr data-revised-hash='3572cee95d05cd249bc20aee4fe25bd95fecef1b'><td><a href='/date/2018-09-26T02:15:53/css-animations-1/'>02:15:53 PDT</a></td><td>2018-09-26 02:07:27 PDT</td><td><span>fantasai</span></td><td>[css-align-3][css-animations-1][css-animations-2][css-box-3][css-break-3][css-color-3][css-content-3][css-flexbox-1][cssgrid-1][css-images-3][css-images-4][css-inline-3][css-line-grid-1][css-lists-3][css-logical-1][css-overflow-3][css-page-3][css-page-floats-3][css-position-3][css-rhythm-1][css-round-display-1][css-ruby-1][css-scroll-snap-1][css-sizing-3][css-tables-3][css-text-3][css-text-4][css-text-decor-3][css-text-decor-4] Clean up Computed value and Animation type lines in propdef tables. 1st pass; CV lines might need some better wording tweaks.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3572cee95d05cd249bc20aee4fe25bd95fecef1b/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-09-26T02:15:53/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-09-16</th><tr data-revised-hash='985ba7fc3f23c1df2dc8c87281015e9301ad4fcc'><td><a href='/date/2018-09-16T09:21:58/css-animations-1/'>09:21:58 PDT</a></td><td>2018-09-16 09:21:45 PDT</td><td><span>ewilligers</span></td><td>[css-animations] animation-name is not inherited (#3119) The spec previously had "Inherited: none" instead of "no".</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/985ba7fc3f23c1df2dc8c87281015e9301ad4fcc/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-09-16T09:21:58/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-07-09</th><tr data-revised-hash='7bc539a42c9b06f675e3782f1ab2d0262e0fa9e7'><td><a href='/date/2018-07-09T23:26:30/css-animations-1/'>23:26:30 PDT</a></td><td>2018-07-05 19:29:25 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Drop the "Media:" entry from propdef tables Its meaning has never been defined properly, and it does not add useful information. This commit does not remove (correct) uses of Media:all, as these do have a meaning, and will be clarified in a later commit.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7bc539a42c9b06f675e3782f1ab2d0262e0fa9e7/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-07-09T23:26:30/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-06-19</th><tr data-revised-hash='0b6f2ee6f5d634598706fd74c4a1488dcb432b16'><td><a href='/date/2018-06-19T16:10:42/css-animations-1/'>16:10:42 PDT</a></td><td>2018-06-19 16:10:28 PDT</td><td><span title='Chris Nardi'>chris_nardi</span></td><td>[css-animations] Change definition of GlobalEventHandlers to mixin (#2797) GlobalEventHandlers is now defined as a mixin per https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers. Update the partial interface's definition to indicate that it is a mixin.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0b6f2ee6f5d634598706fd74c4a1488dcb432b16/css-animations-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2018-06-19T16:10:42/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-06-15</th><tr data-revised-hash='539ebc31cebaae23fb8454158392d7f0925b1a83'><td><a href='/date/2018-06-15T13:51:29/css-animations-1/'>13:51:29 PDT</a></td><td>2018-06-15 13:51:11 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-animations-1] Fix Bikeshed warnings.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/539ebc31cebaae23fb8454158392d7f0925b1a83/css-animations-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-15T13:51:29/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-05-10</th><tr data-revised-hash='29f847ab82dbe6f5c6cd1f3f53d7b9325646f3e0'><td><a href='/date/2018-05-10T18:49:16/css-animations-1/'>18:49:16 PDT</a></td><td>2018-05-10 18:49:03 PDT</td><td><span title='Stephen McGruer'>stephen_mcgruer</span></td><td>[css-animations] Change AnimationEvent elapsedTime member from 'float' to 'double' (#2666) As per the web-idl spec, float should only be used if there is a specific reason, as double much more closely matches the ECMAScript Number type. In the case of AnimationEvent there does not appear to be such a reason. Furthermore, switching to double allows the elapsedTime to reach higher values without overflowing. A rough calculation (with some assumptions and possible errors) suggests that this change will raise the celing from ~4.5 hours to years.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/29f847ab82dbe6f5c6cd1f3f53d7b9325646f3e0/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-05-10T18:49:16/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-05-06</th><tr data-revised-hash='3ff8fca08a2ebd47ae113138795ec6a2eafa7cb6'><td><a href='/date/2018-05-06T17:03:31/css-animations-1/'>17:03:31 PDT</a></td><td>2018-05-06 17:02:37 PDT</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1] No longer mark AnimationEvent.pseudoElement as at-risk This closes #2647.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3ff8fca08a2ebd47ae113138795ec6a2eafa7cb6/css-animations-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-05-06T17:03:31/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-01-03</th><tr data-revised-hash='5c1af540dfd207b0c814919685393e4b544f2fa1'><td><a href='/date/2018-01-03T16:21:47/css-animations-1/'>16:21:47 PST</a></td><td>2018-01-03 16:21:01 PST</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1] Fix linking of CSSKeyframesRule interface methods</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5c1af540dfd207b0c814919685393e4b544f2fa1/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-01-03T16:21:47/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-11-29</th><tr data-revised-hash='3a421fdbf4cc0deda7a0158ee1a250518b641640'><td><a href='/date/2017-11-29T23:44:10/css-animations-1/'>23:44:10 PST</a></td><td>2017-11-29 23:43:50 PST</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1][css-transitions-1] Add new previous version URLs</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3a421fdbf4cc0deda7a0158ee1a250518b641640/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-11-29T23:44:10/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='41faec2ab52da2a25f5aaa389aede0ce012012a9'><td><a href='/date/2017-11-29T23:38:53/css-animations-1/'>23:38:53 PST</a></td><td>2017-11-29 23:38:30 PST</td><td><span title='Brian Birtles'>brian_birtles</span></td><td>[css-animations-1] Update event constructor link to point to WHATWG DOM spec</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/41faec2ab52da2a25f5aaa389aede0ce012012a9/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-11-29T23:38:53/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-11-09</th><tr data-revised-hash='22c9edc2d68b3ed8cfe65a52958ece5d2403284f'><td><a href='/date/2017-11-09T16:14:17/css-animations-1/'>16:14:17 PST</a></td><td>2017-11-09 16:12:58 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Add w3cid metadata for all editors. I got the uids from the "Edit status" links in https://www.w3.org/2000/09/dbwg/details?group=32061 and made the actual changes with a python script.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/22c9edc2d68b3ed8cfe65a52958ece5d2403284f/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-11-09T16:14:17/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-10-25</th><tr data-revised-hash='6f18a1f16f4d02563b7c6ed69f8503ccc8c8a6b7'><td><a href='/date/2017-10-25T15:39:57/css-animations-1/'>15:39:57 PDT</a></td><td>2017-10-25 15:39:44 PDT</td><td><span title='Tantek Celik'>tantek_celik</span></td><td>Use Title: meta instead of explicit <h1></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6f18a1f16f4d02563b7c6ed69f8503ccc8c8a6b7/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-10-25T15:39:57/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-10-11</th><tr data-revised-hash='bed56e3512405c2bf53f66f5aa0068bf14313fbd'><td><a href='/date/2017-10-11T14:48:05/css-animations-1/'>14:48:05 PDT</a></td><td>2017-10-11 14:47:55 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>THE GREAT NUMBERING - put all specs into numbered directories, per WG resolution, and use Shepherd to set which level is currently shown for the unleveled url.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bed56e3512405c2bf53f66f5aa0068bf14313fbd/css-animations-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-10-11T14:48:05/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody></table></div><div class='footer'><div class='page_nav'><form accept-charset='utf-8' action='/history/css-animations-1/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-animations-1/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 1</span><form accept-charset='utf-8' action='/history/page/2/css-animations-1/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/css-animations-1/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>