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='q2ZThwudusetTUoxkeyq+jymWDyXTef4Z5FdJN0vH+Y=' 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='q2ZThwudusetTUoxkeyq+jymWDyXTef4Z5FdJN0vH+Y=' 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='q2ZThwudusetTUoxkeyq+jymWDyXTef4Z5FdJN0vH+Y=' type='text/javascript'><!-- // --></script><script nonce='q2ZThwudusetTUoxkeyq+jymWDyXTef4Z5FdJN0vH+Y=' 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-color-4\/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-color-4/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-color-4/'>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 6</span><a class='icon button next' href='/history/page/2/css-color-4/'></a><a class='icon button last' href='/history/page/6/css-color-4/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-color-4/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'>2024-11-26</th><tr data-revised-hash='4e58ae05b189f838584fc21f70f3d365e0162e5f'><td><a href='/date/2024-11-26T15:29:02/css-color-4/'>15:29:02 PST</a></td><td>2024-11-26 15:26:52 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color] Export term premultiplied, link to it consistently #11238</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e58ae05b189f838584fc21f70f3d365e0162e5f/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-26T15:29:02/bikeshed/css-color-4/'><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'>2024-11-20</th><tr data-revised-hash='996bd27974446a2a8e5da9744efba87528e6ae3b'><td><a href='/date/2024-11-20T09:20:29/css-color-4/'>09:20:29 PST</a></td><td>2024-11-20 09:19:56 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Equivalence of deprecated and un-deprecated system colors no longer at-risk</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/996bd27974446a2a8e5da9744efba87528e6ae3b/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-20T09:20:29/bikeshed/css-color-4/'><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'>2024-10-18</th><tr data-revised-hash='7a5196978de7f11a75af47251752b008395d5cfd'><td><a href='/date/2024-10-18T11:54:46/css-color-4/'>11:54:46 PDT</a></td><td>2024-09-03 00:58:31 PDT</td><td><span>Guillaume</span></td><td>[css-color-4] Clarify intended use of the parse a CSS &lt;color&gt; algorithm</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7a5196978de7f11a75af47251752b008395d5cfd/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-10-18T11:54:46/bikeshed/css-color-4/'><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'>2024-09-17</th><tr data-revised-hash='6f524336df92aa518db98ca69d3b48e7143a315f'><td><a href='/date/2024-09-17T11:52:35/css-color-4/'>11:52:35 PDT</a></td><td>2024-09-17 11:08:13 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6f524336df92aa518db98ca69d3b48e7143a315f/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-09-17T11:52:35/bikeshed/css-color-4/'><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='faf8012082e28bcd0c9365467dbb699b899c71b3'><td><a href='/date/2024-09-17T09:59:19/css-color-4/'>09:59:19 PDT</a></td><td>2024-09-17 09:58:46 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Add corrected examples for HTML-compatible serialization #10550 Co-authored-by: Anne van Kesteren &lt;annevk@annevk.nl&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/faf8012082e28bcd0c9365467dbb699b899c71b3/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-09-17T09:59:19/bikeshed/css-color-4/'><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'>2024-09-04</th><tr data-revised-hash='1f4acc9b72ba22da39a93605c2a02623c6ee9b81'><td><a href='/date/2024-09-04T09:36:14/css-color-4/'>09:36:14 PDT</a></td><td>2024-09-04 09:35:37 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Remove check on missing values for HTML-compatible serialization, they will already have been converted to zero #10550</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1f4acc9b72ba22da39a93605c2a02623c6ee9b81/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-09-04T09:36:14/bikeshed/css-color-4/'><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='20c3d5a3d268aa66449a30d1874175953d5c812d'><td><a href='/date/2024-09-04T09:25:45/css-color-4/'>09:25:45 PDT</a></td><td>2024-09-04 09:25:13 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Move note about missing values becoming 0, so it applies to both HTML-compatible and CSS serializations #10550</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/20c3d5a3d268aa66449a30d1874175953d5c812d/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-09-04T09:25:45/bikeshed/css-color-4/'><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='5b67b2f8944cf6afb76af20480024d3a34057fdc'><td><a href='/date/2024-09-04T09:21:39/css-color-4/'>09:21:39 PDT</a></td><td>2024-09-04 09:20:49 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Export HTML-Compatible Serialization, #10550</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5b67b2f8944cf6afb76af20480024d3a34057fdc/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-09-04T09:21:39/bikeshed/css-color-4/'><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'>2024-08-14</th><tr data-revised-hash='dc7a2fabb0a3acb3d872452fa5a86f091780f275'><td><a href='/date/2024-08-14T06:48:48/css-color-4/'>06:48:48 PDT</a></td><td>2024-08-14 06:48:19 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dc7a2fabb0a3acb3d872452fa5a86f091780f275/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-08-14T06:48:48/bikeshed/css-color-4/'><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='89b8d0c1142cdf72d436ced1c947d50e274f4df8'><td><a href='/date/2024-08-14T06:46:40/css-color-4/'>06:46:40 PDT</a></td><td>2024-08-14 06:46:06 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Added an HTML-Compatible hex serialization for sRGB, ##10550</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/89b8d0c1142cdf72d436ced1c947d50e274f4df8/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-08-14T06:46:40/bikeshed/css-color-4/'><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'>2024-07-25</th><tr data-revised-hash='33c048925e1b486e186ef29b30bb768590e06316'><td><a href='/date/2024-07-25T09:51:20/css-color-4/'>09:51:20 PDT</a></td><td>2024-07-25 09:36:35 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] WPT needed for quirky hex colors</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/33c048925e1b486e186ef29b30bb768590e06316/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-07-25T09:51:20/bikeshed/css-color-4/'><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'>2024-07-24</th><tr data-revised-hash='9614273b25ebea068abb5ace8ac3fef97f4b9830'><td><a href='/date/2024-07-24T18:03:31/css-color-4/'>18:03:31 PDT</a></td><td>2024-07-24 18:02:51 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9614273b25ebea068abb5ace8ac3fef97f4b9830/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-07-24T18:03:31/bikeshed/css-color-4/'><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'>2024-06-22</th><tr data-revised-hash='5f6950421062002d570c9ab0cb881736fa3b5eaf'><td><a href='/date/2024-06-22T10:08:38/css-color-4/'>10:08:38 PDT</a></td><td>2024-06-22 09:05:26 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5f6950421062002d570c9ab0cb881736fa3b5eaf/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-06-22T10:08:38/bikeshed/css-color-4/'><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='993422d65ecf773afcbf3e211e77f26c32e9bdb9'><td><a href='/date/2024-06-22T08:58:50/css-color-4/'>08:58:50 PDT</a></td><td>2024-06-22 08:58:14 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Update changes to 21 June</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/993422d65ecf773afcbf3e211e77f26c32e9bdb9/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-22T08:58:50/bikeshed/css-color-4/'><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'>2024-06-20</th><tr data-revised-hash='22b562a2043d94e34bd29a8d1ee7b0ff2dc90570'><td><a href='/date/2024-06-20T15:55:32/css-color-4/'>15:55:32 PDT</a></td><td>2024-06-20 15:53:55 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial][sigh] whoops</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/22b562a2043d94e34bd29a8d1ee7b0ff2dc90570/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-20T15:55:32/bikeshed/css-color-4/'><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='f7dff9ece16e317dda9001e44085c7608f09aa3d'><td><a href='/date/2024-06-20T12:00:07/css-color-4/'>12:00:07 PDT</a></td><td>2024-06-20 11:59:33 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>whoops</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f7dff9ece16e317dda9001e44085c7608f09aa3d/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-20T12:00:07/bikeshed/css-color-4/'><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='67e4fbd5fa4c9b10dac3556bad302dd331697791'><td><a href='/date/2024-06-20T11:08:15/css-color-4/'>11:08:15 PDT</a></td><td>2024-06-20 11:07:40 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Add XYZ examples for white (D65 has Z greater than 1)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/67e4fbd5fa4c9b10dac3556bad302dd331697791/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-20T11:08:15/bikeshed/css-color-4/'><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='34aa531d29a76c511b487317884f146ffd0ebd3e'><td><a href='/date/2024-06-20T11:00:11/css-color-4/'>11:00:11 PDT</a></td><td>2024-06-20 10:59:10 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Clarify which component in XYZ corresponds to brightness</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/34aa531d29a76c511b487317884f146ffd0ebd3e/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-20T11:00:11/bikeshed/css-color-4/'><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'>2024-06-19</th><tr data-revised-hash='8395d07b0451607a552f15c7e4320279638089c4'><td><a href='/date/2024-06-19T10:02:30/css-color-4/'>10:02:30 PDT</a></td><td>2024-06-19 05:54:15 PDT</td><td><span>Guillaume</span></td><td>[css-color-4] CSS gamut mapping applies on actual values</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8395d07b0451607a552f15c7e4320279638089c4/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-19T10:02:30/bikeshed/css-color-4/'><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'>2024-05-18</th><tr data-revised-hash='55bfdad8c3be5c6007e1b9623256bf1be4d14123'><td><a href='/date/2024-05-18T00:30:27/css-color-4/'>00:30:27 PDT</a></td><td>2024-05-17 10:45:40 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>fix: resolve repeated terms (like ?the the?) Signed-off-by: Jens Oliver Meiert &lt;jens@meiert.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/55bfdad8c3be5c6007e1b9623256bf1be4d14123/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-05-18T00:30:27/bikeshed/css-color-4/'><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'>2024-04-23</th><tr data-revised-hash='be67fc67810abd7e29e980b8f2ed76cc50f9c741'><td><a href='/date/2024-04-23T12:41:48/css-color-4/'>12:41:48 PDT</a></td><td>2024-04-22 16:34:00 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Correct step 4 of GMA, fix #10226</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/be67fc67810abd7e29e980b8f2ed76cc50f9c741/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-23T12:41:48/bikeshed/css-color-4/'><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'>2024-04-12</th><tr data-revised-hash='1d8c01ad47f4d6d2f11f3ba855959b80373f20a0'><td><a href='/date/2024-04-12T13:37:09/css-color-4/'>13:37:09 PDT</a></td><td>2024-04-12 13:36:10 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] better autolinking</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1d8c01ad47f4d6d2f11f3ba855959b80373f20a0/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-12T13:37:09/bikeshed/css-color-4/'><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='f5d86e741aeab1a62c2e8c682bce90d216daa5e3'><td><a href='/date/2024-04-12T13:13:47/css-color-4/'>13:13:47 PDT</a></td><td>2024-04-12 12:59:14 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Interpolation is the most common situation which combines two colors, but not the only one. #10151</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f5d86e741aeab1a62c2e8c682bce90d216daa5e3/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-04-12T13:13:47/bikeshed/css-color-4/'><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='d1ac5f434b162a7d5464281c3d1f4dd98674d459'><td><a href='/date/2024-04-12T12:54:07/css-color-4/'>12:54:07 PDT</a></td><td>2024-04-12 12:53:36 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Add missing wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d1ac5f434b162a7d5464281c3d1f4dd98674d459/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-04-12T12:54:07/bikeshed/css-color-4/'><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='40c566ff173fab58a524c6f37beab333e0c9082f'><td><a href='/date/2024-04-12T12:52:26/css-color-4/'>12:52:26 PDT</a></td><td>2024-04-12 12:51:57 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Add a couple more examples where colors are interpolated</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/40c566ff173fab58a524c6f37beab333e0c9082f/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-04-12T12:52:26/bikeshed/css-color-4/'><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'>2024-04-08</th><tr data-revised-hash='8cad02e378684dff1f02837602b9b173597159e8'><td><a href='/date/2024-04-08T13:34:55/css-color-4/'>13:34:55 PDT</a></td><td>2024-04-08 13:34:32 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-color-4] Force a text color for the deltaE table, as the chosen colors are light and assume black text</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8cad02e378684dff1f02837602b9b173597159e8/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-04-08T13:34:55/bikeshed/css-color-4/'><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'>2024-03-21</th><tr data-revised-hash='25b32691b5c491159e491aa38e9111249c61404c'><td><a href='/date/2024-03-21T11:01:35/css-color-4/'>11:01:35 PDT</a></td><td>2024-03-21 11:01:05 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/25b32691b5c491159e491aa38e9111249c61404c/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-03-21T11:01:35/bikeshed/css-color-4/'><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='90b85c6090ac3a0ab0b5cd84ab0d312057d30948'><td><a href='/date/2024-03-21T10:50:21/css-color-4/'>10:50:21 PDT</a></td><td>2024-03-21 10:49:49 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Linkfix sharma dataset for deltaE 2000</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/90b85c6090ac3a0ab0b5cd84ab0d312057d30948/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-03-21T10:50:21/bikeshed/css-color-4/'><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'>2024-03-13</th><tr data-revised-hash='ef83205af2abdfd3993b7a310e2eb1f4041414e7'><td><a href='/date/2024-03-13T15:04:57/css-color-4/'>15:04:57 PDT</a></td><td>2024-03-08 14:05:43 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] broken link in previous version</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ef83205af2abdfd3993b7a310e2eb1f4041414e7/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-03-13T15:04:57/bikeshed/css-color-4/'><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'>2024-03-04</th><tr data-revised-hash='f99b2f2da6f92cff2020556cdf5f0f18c0de74c3'><td><a href='/date/2024-03-04T22:27:56/css-color-4/'>22:27:56 PST</a></td><td>2024-03-04 17:00:11 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] All figures have meaningful IDs</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f99b2f2da6f92cff2020556cdf5f0f18c0de74c3/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-03-04T22:27:56/bikeshed/css-color-4/'><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'>2024-02-29</th><tr data-revised-hash='599449c80413c18725f9cbc568fd3da7d815c7be'><td><a href='/date/2024-02-29T10:33:18/css-color-4/'>10:33:18 PST</a></td><td>2024-02-29 10:32:33 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Clarity improvements for tagged and untagged images.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/599449c80413c18725f9cbc568fd3da7d815c7be/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-29T10:33:18/bikeshed/css-color-4/'><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='8ed8220f9f8596109b348788a51000681c8de7da'><td><a href='/date/2024-02-29T10:27:16/css-color-4/'>10:27:16 PST</a></td><td>2024-02-29 10:26:40 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] use the right syntax, sigh</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8ed8220f9f8596109b348788a51000681c8de7da/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-29T10:27:16/bikeshed/css-color-4/'><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='670e86fdd02e796dcbc1f404991267f0cf2c3f8f'><td><a href='/date/2024-02-29T10:25:35/css-color-4/'>10:25:35 PST</a></td><td>2024-02-29 10:24:45 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Remove trailing mention of &lt;absolute-color-function&gt;, reword.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/670e86fdd02e796dcbc1f404991267f0cf2c3f8f/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-29T10:25:35/bikeshed/css-color-4/'><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'>2024-02-26</th><tr data-revised-hash='cf749dbd5c9b946df5a1688fb2bc07d283c4ba77'><td><a href='/date/2024-02-26T17:36:51/css-color-4/'>17:36:51 PST</a></td><td>2024-02-26 15:01:19 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] link to definition of luminance</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cf749dbd5c9b946df5a1688fb2bc07d283c4ba77/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-26T17:36:51/bikeshed/css-color-4/'><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='19012fee09496f7ea82bfdd0077d85afe650eb45'><td><a href='/date/2024-02-26T15:09:25/css-color-4/'>15:09:25 PST</a></td><td>2024-02-24 23:53:27 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[cssom-1][css-color-4][css-color-5][css-color-6] Describe CSSOM serialization in terms of declared values rather than specified values</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/19012fee09496f7ea82bfdd0077d85afe650eb45/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-26T15:09:25/bikeshed/css-color-4/'><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='2c4082be8ac38cfc54d89d9561cf4e2b00109a9e'><td><a href='/date/2024-02-26T14:59:52/css-color-4/'>14:59:52 PST</a></td><td>2024-02-26 14:57:37 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Add exported definition of luminance</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c4082be8ac38cfc54d89d9561cf4e2b00109a9e/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-26T14:59:52/bikeshed/css-color-4/'><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'>2024-02-22</th><tr data-revised-hash='814b495d5e83616dd45a9037f59ef8363c0ca97b'><td><a href='/date/2024-02-22T13:04:40/css-color-4/'>13:04:40 PST</a></td><td>2024-02-21 02:43:55 PST</td><td><span>Guillaume</span></td><td>[css-color-4] Add production rule for &lt;opacity-value&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/814b495d5e83616dd45a9037f59ef8363c0ca97b/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-22T13:04:40/bikeshed/css-color-4/'><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'>2024-02-20</th><tr data-revised-hash='787469c1f57bc7a4cef92018dcfde80d1c92d5ab'><td><a href='/date/2024-02-20T13:25:59/css-color-4/'>13:25:59 PST</a></td><td>2024-02-20 13:24:32 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>Clarified when results from hslToRgb will be in [0,1] #9222</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/787469c1f57bc7a4cef92018dcfde80d1c92d5ab/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-20T13:25:59/bikeshed/css-color-4/'><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='8f6ed2b9ab6a415809f75a1a9d2d798ad1657c23'><td><a href='/date/2024-02-20T09:19:11/css-color-4/'>09:19:11 PST</a></td><td>2024-02-20 08:55:03 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Clarified that once linearized, RGB spaces are additive. Fix #9977</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8f6ed2b9ab6a415809f75a1a9d2d798ad1657c23/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-20T09:19:11/bikeshed/css-color-4/'><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'>2024-02-14</th><tr data-revised-hash='e6d2fd451a09cc3c4fcfb6995724d8fbdf73b79b'><td><a href='/date/2024-02-14T11:30:54/css-color-4/'>11:30:54 PST</a></td><td>2024-02-14 11:30:23 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Add WPT for clamping negative saturation in hsl() modern syntax #9222</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e6d2fd451a09cc3c4fcfb6995724d8fbdf73b79b/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-14T11:30:54/bikeshed/css-color-4/'><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'>2024-02-13</th><tr data-revised-hash='42817a3bec2fe5487518d8cdcafc9b9cda7de0dc'><td><a href='/date/2024-02-13T21:06:34/css-color-4/'>21:06:34 PST</a></td><td>2024-02-13 21:05:30 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/42817a3bec2fe5487518d8cdcafc9b9cda7de0dc/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-13T21:06:34/bikeshed/css-color-4/'><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'>2024-02-09</th><tr data-revised-hash='295bcae15b180cd2fec97a5c80906d6fbc4cfe6c'><td><a href='/date/2024-02-09T11:17:51/css-color-4/'>11:17:51 PST</a></td><td>2024-02-09 11:17:17 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] alternate link in case the rochester server issue becomes permanent</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/295bcae15b180cd2fec97a5c80906d6fbc4cfe6c/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-09T11:17:51/bikeshed/css-color-4/'><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='f129ad2605c674b0edadafb1953f2b037c4b3977'><td><a href='/date/2024-02-09T11:01:11/css-color-4/'>11:01:11 PST</a></td><td>2024-02-09 11:00:33 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] linkfix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f129ad2605c674b0edadafb1953f2b037c4b3977/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-09T11:01:11/bikeshed/css-color-4/'><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='399e2c16da17896cfcd3888618272ce87e7f595f'><td><a href='/date/2024-02-09T10:48:57/css-color-4/'>10:48:57 PST</a></td><td>2024-02-09 10:47:12 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Linkfixes, prepare for publication</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/399e2c16da17896cfcd3888618272ce87e7f595f/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-09T10:48:57/bikeshed/css-color-4/'><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'>2024-02-07</th><tr data-revised-hash='b8c75b021fd15cd60552225b98a15f9a2509473f'><td><a href='/date/2024-02-07T12:40:35/css-color-4/'>12:40:35 PST</a></td><td>2024-02-07 12:38:59 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Add wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b8c75b021fd15cd60552225b98a15f9a2509473f/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-07T12:40:35/bikeshed/css-color-4/'><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'>2024-01-30</th><tr data-revised-hash='fc53888c5054526b700bff48a825e35167e48938'><td><a href='/date/2024-01-30T10:23:45/css-color-4/'>10:23:45 PST</a></td><td>2024-01-30 08:54:32 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Added steps for serializing a uint8_t alpha, from cssom-1 #9798</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fc53888c5054526b700bff48a825e35167e48938/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-30T10:23:45/bikeshed/css-color-4/'><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'>2024-01-29</th><tr data-revised-hash='aeb183c1e54f71d0585b4f3c83dfafcf9ef1e19c'><td><a href='/date/2024-01-29T11:29:27/css-color-4/'>11:29:27 PST</a></td><td>2024-01-29 10:46:06 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Add WPT for PNG cICP in apng</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aeb183c1e54f71d0585b4f3c83dfafcf9ef1e19c/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-29T11:29:27/bikeshed/css-color-4/'><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='c4ed68d145e0ca1f472224b243c8d212130743ee'><td><a href='/date/2024-01-29T08:01:01/css-color-4/'>08:01:01 PST</a></td><td>2024-01-29 07:59:33 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>Restored parse-time clamping of HSL negative saturation to 0, which is current interop behavior from CSS Color 3. #9222</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c4ed68d145e0ca1f472224b243c8d212130743ee/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-29T08:01:01/bikeshed/css-color-4/'><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='dbd7c56534ef24aff5f70698d82aa2c11a508c88'><td><a href='/date/2024-01-29T07:43:44/css-color-4/'>07:43:44 PST</a></td><td>2024-01-29 07:41:55 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Restored parse-time clamping of HSL negative saturation to 0, which is current interop behavior from CSS Color 3. #9222</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dbd7c56534ef24aff5f70698d82aa2c11a508c88/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-29T07:43:44/bikeshed/css-color-4/'><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='13e11a7664d79210df2de089a16f2c46edd3c467'><td><a href='/date/2024-01-29T07:13:14/css-color-4/'>07:13:14 PST</a></td><td>2024-01-29 07:12:38 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] When interpolating, always convert colorspace, so that powerless components become missing #8609</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/13e11a7664d79210df2de089a16f2c46edd3c467/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-29T07:13:14/bikeshed/css-color-4/'><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='c72166e126645701341fa87ad73bbbe4d162d78c'><td><a href='/date/2024-01-29T06:55:28/css-color-4/'>06:55:28 PST</a></td><td>2024-01-29 06:54:23 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Clarified when alpha 1 is omitted from serialization, #8311</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c72166e126645701341fa87ad73bbbe4d162d78c/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-29T06:55:28/bikeshed/css-color-4/'><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='7f45a3b67bedaf51d41d32e4d11ec9e2a30ee489'><td><a href='/date/2023-12-11T13:53:11/css-color-4/'>13:53:11 PST</a></td><td>2023-11-28 12:02:37 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] proper bikeshed syntax #9632</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7f45a3b67bedaf51d41d32e4d11ec9e2a30ee489/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-color-4/'><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='7f45a3b67bedaf51d41d32e4d11ec9e2a30ee489'><td><a href='/date/2023-12-11T13:53:11/css-color-4/'>13:53:11 PST</a></td><td>2023-11-28 12:02:37 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] proper bikeshed syntax #9632</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7f45a3b67bedaf51d41d32e4d11ec9e2a30ee489/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-color-4/'><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='7f45a3b67bedaf51d41d32e4d11ec9e2a30ee489'><td><a href='/date/2023-12-11T13:53:11/css-color-4/'>13:53:11 PST</a></td><td>2023-11-28 12:02:37 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] proper bikeshed syntax #9632</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7f45a3b67bedaf51d41d32e4d11ec9e2a30ee489/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-color-4/'><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'>2024-01-24</th><tr data-revised-hash='faee41ed7ee39113bcc5f98edeb4a87da57316f3'><td><a href='/date/2024-01-24T04:25:13/css-color-4/'>04:25:13 PST</a></td><td>2024-01-24 04:24:29 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Removed redundant constraining of hue angles to [0,360] this is already done. Fix #9335</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/faee41ed7ee39113bcc5f98edeb4a87da57316f3/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-24T04:25:13/bikeshed/css-color-4/'><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'>2024-01-23</th><tr data-revised-hash='7b05fe2340794f6441da79691a50de3483676ae2'><td><a href='/date/2024-01-23T09:08:49/css-color-4/'>09:08:49 PST</a></td><td>2024-01-23 09:07:34 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][css-color-5] Define absolute colors in prose, #9555</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7b05fe2340794f6441da79691a50de3483676ae2/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-23T09:08:49/bikeshed/css-color-4/'><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'>2024-01-16</th><tr data-revised-hash='8a4adec2a5e357dffbeee8fad139a61ad099191a'><td><a href='/date/2024-01-16T05:45:40/css-color-4/'>05:45:40 PST</a></td><td>2024-01-16 05:44:41 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] More wpt for color interpolation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8a4adec2a5e357dffbeee8fad139a61ad099191a/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-16T05:45:40/bikeshed/css-color-4/'><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'>2024-01-15</th><tr data-revised-hash='427521f5a0adf0d351b531470de92c595c8fae25'><td><a href='/date/2024-01-15T10:23:19/css-color-4/'>10:23:19 PST</a></td><td>2024-01-10 14:20:43 PST</td><td><span title='Emilio Cobos &Aacute;lvarez'>emilio</span></td><td>[css-color-4] ActiveCaption is a background. And thus shouldn&#039;t match CanvasText, but Canvas.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/427521f5a0adf0d351b531470de92c595c8fae25/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-15T10:23:19/bikeshed/css-color-4/'><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'>2024-01-12</th><tr data-revised-hash='aff64d6139965a262e7eb174abcc2075971e8222'><td><a href='/date/2024-01-12T10:01:49/css-color-4/'>10:01:49 PST</a></td><td>2024-01-12 09:58:01 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Opacity property now uses opacity-value (which has different clamping behavior to alpha-value)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aff64d6139965a262e7eb174abcc2075971e8222/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-01-12T10:01:49/bikeshed/css-color-4/'><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'>2024-01-05</th><tr data-revised-hash='4ad2a995e019892a06ed5d7640673c8d4f500532'><td><a href='/date/2024-01-05T09:51:51/css-color-4/'>09:51:51 PST</a></td><td>2024-01-05 09:48:04 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] carrying forward happens before premultiplication, see https://github.com/web-platform-tests/wpt/issues/43180</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4ad2a995e019892a06ed5d7640673c8d4f500532/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-01-05T09:51:51/bikeshed/css-color-4/'><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-21</th><tr data-revised-hash='c4a9c7deb95fa84501053b4fbb0045b0be35dedf'><td><a href='/date/2023-12-21T22:12:31/css-color-4/'>22:12:31 PST</a></td><td>2023-12-21 22:10:58 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Update gamut mapping algorithm, fixes #9715</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c4a9c7deb95fa84501053b4fbb0045b0be35dedf/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-21T22:12:31/bikeshed/css-color-4/'><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-18</th><tr data-revised-hash='9ad9e6a7dbbf2aaa9600dd4c1f38bf614fd77b2c'><td><a href='/date/2023-12-18T12:43:44/css-color-4/'>12:43:44 PST</a></td><td>2023-12-18 12:43:06 PST</td><td><span>fantasai</span></td><td>[meta] Consistent spelling of lowercase/uppercase</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9ad9e6a7dbbf2aaa9600dd4c1f38bf614fd77b2c/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-18T12:43:44/bikeshed/css-color-4/'><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='07ddb8dbfd6d9887926a8e7eccf0caf0d4dfabe8'><td><a href='/date/2023-12-18T10:08:08/css-color-4/'>10:08:08 PST</a></td><td>2023-12-18 10:07:23 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Revert changes from https://github.com/w3c/csswg-drafts/commit/06748226bb73a7fee401ba0d00c4e4655ec17555 #9715</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/07ddb8dbfd6d9887926a8e7eccf0caf0d4dfabe8/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-18T10:08:08/bikeshed/css-color-4/'><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='a59a0f35d0f9c1caf6c560eb2f4ace3feb383691'><td><a href='/date/2023-12-18T06:06:09/css-color-4/'>06:06:09 PST</a></td><td>2023-12-16 14:41:12 PST</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td>[css-color-4] Reverted the replacement of &quot;animation&quot; by &quot;interpolation&quot;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a59a0f35d0f9c1caf6c560eb2f4ace3feb383691/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-18T06:06:09/bikeshed/css-color-4/'><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-16</th><tr data-revised-hash='be4a5617d0bd176a5b7017fbe2c39becb73db7be'><td><a href='/date/2023-12-16T15:38:07/css-color-4/'>15:38:07 PST</a></td><td>2023-12-16 15:37:23 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Clarify that HWB white or black at 100% is insufficient for an achromatic color; it is the sum which matters. #9248</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/be4a5617d0bd176a5b7017fbe2c39becb73db7be/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-16T15:38:07/bikeshed/css-color-4/'><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='4ea1a021ae6449b081d39c035947efeef2073b14'><td><a href='/date/2023-12-16T09:35:32/css-color-4/'>09:35:32 PST</a></td><td>2023-12-16 09:35:04 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Update changes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4ea1a021ae6449b081d39c035947efeef2073b14/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-16T09:35:32/bikeshed/css-color-4/'><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='4e253fccff4e04e819112082ac6ce472b7d50999'><td><a href='/date/2023-12-16T08:53:51/css-color-4/'>08:53:51 PST</a></td><td>2023-12-16 08:53:13 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Avoid returning negative saturation in rgb to hsl conversion, #9222</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e253fccff4e04e819112082ac6ce472b7d50999/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-16T08:53:51/bikeshed/css-color-4/'><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-15</th><tr data-revised-hash='4c263b32ce376ae7f28b69fc0cc6c374f02303be'><td><a href='/date/2023-12-15T11:19:30/css-color-4/'>11:19:30 PST</a></td><td>2023-12-15 11:18:53 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Consistently return output of GMA in the destination color space #9651</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4c263b32ce376ae7f28b69fc0cc6c374f02303be/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-15T11:19:30/bikeshed/css-color-4/'><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-07-21</th><tr data-revised-hash='4d7cc0bd03739465897b7c4014c38dfd8518b837'><td><a href='/date/2023-07-21T09:59:15/css-color-4/'>09:59:15 PDT</a></td><td>2023-07-21 09:56:11 PDT</td><td><span title='Peter Linss'>plinss</span></td><td>Fix missing quote on id</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4d7cc0bd03739465897b7c4014c38dfd8518b837/css-color-4/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-07-21T09:59:15/bikeshed/css-color-4/'><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='18608d7142c649cbe97e0d9b345286ef20771f36'><td><a href='/date/2023-07-21T08:55:41/css-color-4/'>08:55:41 PDT</a></td><td>2023-07-11 14:54:06 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[various][editorial] Remove a handful of unnecessary/incorrect genderings.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/18608d7142c649cbe97e0d9b345286ef20771f36/css-color-4/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-07-21T08:55:41/bikeshed/css-color-4/'><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='6ab82b80bbabb839f2948d27c2805b1764baa876'><td><a href='/date/2023-06-07T08:02:17/css-color-4/'>08:02:17 PDT</a></td><td>2023-06-05 08:42:08 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Make Lab/LCH/Oklab/Oklch tutorial sections non-normative</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6ab82b80bbabb839f2948d27c2805b1764baa876/css-color-4/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-06-07T08:02:17/bikeshed/css-color-4/'><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='91bcd76a17b80233ea1bf7814b264d1d56686088'><td><a href='/date/2023-05-07T21:39:40/css-color-4/'>21:39:40 PDT</a></td><td>2023-04-13 05:11:02 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/91bcd76a17b80233ea1bf7814b264d1d56686088/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-05-07T21:39:40/bikeshed/css-color-4/'><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-03-02</th><tr data-revised-hash='f6ea4c6ddf1085a337e6648f708a02cdcdf9caca'><td><a href='/date/2023-03-02T13:02:59/css-color-4/'>13:02:59 PST</a></td><td>2023-03-02 13:01:53 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Add percent reference range for HSL, fix #8515</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f6ea4c6ddf1085a337e6648f708a02cdcdf9caca/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-03-02T13:02:59/bikeshed/css-color-4/'><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-20</th><tr data-revised-hash='3d4f6c3d7cdd278256d0f0e57c3adccb47f28bb5'><td><a href='/date/2023-02-20T13:03:58/css-color-4/'>13:03:58 PST</a></td><td>2023-02-20 13:03:27 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][css-color-5][editorial] WPT update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3d4f6c3d7cdd278256d0f0e57c3adccb47f28bb5/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-20T13:03:58/bikeshed/css-color-4/'><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='1604fbf6aa941502e752c150698b74dd70170a6c'><td><a href='/date/2023-02-20T12:25:23/css-color-4/'>12:25:23 PST</a></td><td>2023-02-20 12:24:47 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Modern hsl &amp; hsla also allows mixed num-pct #8231</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1604fbf6aa941502e752c150698b74dd70170a6c/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-20T12:25:23/bikeshed/css-color-4/'><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='58a9bb680a521879a5b00e1372a49aa4021776ca'><td><a href='/date/2023-02-20T12:09:00/css-color-4/'>12:09:00 PST</a></td><td>2023-02-20 11:40:40 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-5] Non-RCS modern rgb &amp; rgba also allows mixed num-pct #8231</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/58a9bb680a521879a5b00e1372a49aa4021776ca/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-20T12:09:00/bikeshed/css-color-4/'><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='5357e695bd0f05284f4027941075a77601d4f4b0'><td><a href='/date/2023-02-20T09:59:12/css-color-4/'>09:59:12 PST</a></td><td>2023-02-20 09:58:04 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Define and export term &quot;modern color syntax&quot;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5357e695bd0f05284f4027941075a77601d4f4b0/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-20T09:59:12/bikeshed/css-color-4/'><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-10</th><tr data-revised-hash='02c5bf68c7e50eedfd0eeda7d70515cefe5d8a89'><td><a href='/date/2023-02-10T10:46:20/css-color-4/'>10:46:20 PST</a></td><td>2023-02-10 10:45:40 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] CSS2.2 defines stacking context</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/02c5bf68c7e50eedfd0eeda7d70515cefe5d8a89/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-10T10:46:20/bikeshed/css-color-4/'><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='638f115628de7c958a57e790f8bc4006e91f8135'><td><a href='/date/2023-02-10T09:41:15/css-color-4/'>09:41:15 PST</a></td><td>2023-02-10 09:40:33 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Clean up local bibliography so author names format correctly</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/638f115628de7c958a57e790f8bc4006e91f8135/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-10T09:41:15/bikeshed/css-color-4/'><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='9dc629e2192da03cf258d891d77a8f9e0f72e116'><td><a href='/date/2023-02-10T09:30:27/css-color-4/'>09:30:27 PST</a></td><td>2023-02-10 09:29:42 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] inadvertent normative reference to images-4 made informative</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9dc629e2192da03cf258d891d77a8f9e0f72e116/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-10T09:30:27/bikeshed/css-color-4/'><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-09</th><tr data-revised-hash='b65d17698949d688f3b3e2eeef4511092a374b3d'><td><a href='/date/2023-02-09T22:30:27/css-color-4/'>22:30:27 PST</a></td><td>2023-02-09 22:29:27 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b65d17698949d688f3b3e2eeef4511092a374b3d/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-09T22:30:27/bikeshed/css-color-4/'><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-07</th><tr data-revised-hash='66fbe72391110119ef512d9780cf4175f4aedbc9'><td><a href='/date/2023-02-07T09:59:22/css-color-4/'>09:59:22 PST</a></td><td>2023-02-07 09:58:18 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Allow all color spaces for interpolation method, fix #7907</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/66fbe72391110119ef512d9780cf4175f4aedbc9/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-02-07T09:59:22/bikeshed/css-color-4/'><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-01</th><tr data-revised-hash='f4af62f1ea8c99a3f5ec073cd16ddc3e9fe2d6be'><td><a href='/date/2023-02-01T10:45:48/css-color-4/'>10:45:48 PST</a></td><td>2023-02-01 10:17:40 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4]Export term analogous components #7771</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f4af62f1ea8c99a3f5ec073cd16ddc3e9fe2d6be/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-02-01T10:45:48/bikeshed/css-color-4/'><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-01-26</th><tr data-revised-hash='a06701b86cf6c71044ab99079e19e37347c81020'><td><a href='/date/2023-01-26T08:53:55/css-color-4/'>08:53:55 PST</a></td><td>2023-01-26 08:53:18 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Remove hardcoded publication date</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a06701b86cf6c71044ab99079e19e37347c81020/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-26T08:53:55/bikeshed/css-color-4/'><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='1cbd2d9ead52538d9ad34ee9628beefc69d0e863'><td><a href='/date/2023-01-26T07:48:57/css-color-4/'>07:48:57 PST</a></td><td>2023-01-26 07:48:12 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Three params are required, fix #8362</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1cbd2d9ead52538d9ad34ee9628beefc69d0e863/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-26T07:48:57/bikeshed/css-color-4/'><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-01-20</th><tr data-revised-hash='d460617eb34f8b8fc9cc3e34d68f838203f6fcdd'><td><a href='/date/2023-01-20T07:08:26/css-color-4/'>07:08:26 PST</a></td><td>2023-01-20 07:07:20 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Improved serialization of named, system, dep system &amp; transparent #7870</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d460617eb34f8b8fc9cc3e34d68f838203f6fcdd/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-20T07:08:26/bikeshed/css-color-4/'><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-01-14</th><tr data-revised-hash='cb8febc9b2deec983b3f32e1df7a5b07718b3dba'><td><a href='/date/2023-01-14T09:52:10/css-color-4/'>09:52:10 PST</a></td><td>2023-01-14 09:51:18 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Changes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cb8febc9b2deec983b3f32e1df7a5b07718b3dba/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-14T09:52:10/bikeshed/css-color-4/'><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='ac4775bac4cebbcff87f1b01c80f0dc221268b94'><td><a href='/date/2023-01-14T08:23:52/css-color-4/'>08:23:52 PST</a></td><td>2023-01-14 08:23:16 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Update changes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ac4775bac4cebbcff87f1b01c80f0dc221268b94/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-14T08:23:52/bikeshed/css-color-4/'><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='958a422908df1c14e0fd694b921bae11ed7bcefc'><td><a href='/date/2023-01-14T07:41:15/css-color-4/'>07:41:15 PST</a></td><td>2023-01-14 07:40:35 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] Stop linter whining</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/958a422908df1c14e0fd694b921bae11ed7bcefc/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-14T07:41:15/bikeshed/css-color-4/'><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='ebf984306e66cc2e4902b456f7d94e191932aca1'><td><a href='/date/2023-01-14T06:49:24/css-color-4/'>06:49:24 PST</a></td><td>2023-01-14 06:48:33 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Parsed-value time is not a defined term</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ebf984306e66cc2e4902b456f7d94e191932aca1/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-14T06:49:24/bikeshed/css-color-4/'><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='fe48cd6b688b7d1976de075776d5c95942d3c934'><td><a href='/date/2023-01-14T06:31:26/css-color-4/'>06:31:26 PST</a></td><td>2023-01-14 06:30:49 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Be ass-clenchingly clear</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fe48cd6b688b7d1976de075776d5c95942d3c934/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-14T06:31:26/bikeshed/css-color-4/'><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='e8193495c1c26fe481e01aaa4a4f7aec04b703a0'><td><a href='/date/2023-01-14T06:28:40/css-color-4/'>06:28:40 PST</a></td><td>2023-01-14 06:28:10 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] wpt cleanup, deleted tests</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e8193495c1c26fe481e01aaa4a4f7aec04b703a0/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-14T06:28:40/bikeshed/css-color-4/'><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='a87ea61e023372e9b9ff23e260114cd930c20fc3'><td><a href='/date/2023-01-14T05:52:28/css-color-4/'>05:52:28 PST</a></td><td>2023-01-14 05:51:33 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Clarity on clamping</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a87ea61e023372e9b9ff23e260114cd930c20fc3/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-14T05:52:28/bikeshed/css-color-4/'><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='fe3b976f2a977ef0cc26bd6e9f5c62730b6394a4'><td><a href='/date/2023-01-14T05:49:21/css-color-4/'>05:49:21 PST</a></td><td>2023-01-14 05:48:24 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4] Specified values for named colors, #7870 #1004</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fe3b976f2a977ef0cc26bd6e9f5c62730b6394a4/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-14T05:49:21/bikeshed/css-color-4/'><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-01-12</th><tr data-revised-hash='78c31668e06a86b7caa23bfd8fcccc500d39bc70'><td><a href='/date/2023-01-12T06:19:47/css-color-4/'>06:19:47 PST</a></td><td>2023-01-12 06:19:09 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/78c31668e06a86b7caa23bfd8fcccc500d39bc70/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-12T06:19:47/bikeshed/css-color-4/'><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='ded4adee5691143e11f9da15703f2dbd134482c4'><td><a href='/date/2023-01-12T06:14:18/css-color-4/'>06:14:18 PST</a></td><td>2023-01-12 06:13:23 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] update wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ded4adee5691143e11f9da15703f2dbd134482c4/css-color-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-12T06:14:18/bikeshed/css-color-4/'><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-12-23</th><tr data-revised-hash='ab94ec7e3cb30769f70d4751cdc167fd780f2fd5'><td><a href='/date/2022-12-23T03:56:44/css-color-4/'>03:56:44 PST</a></td><td>2022-12-22 23:26:46 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>Fix grammar in #convert-destpolar</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ab94ec7e3cb30769f70d4751cdc167fd780f2fd5/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-23T03:56:44/bikeshed/css-color-4/'><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-16</th><tr data-revised-hash='2c844b9f6084104fbb70a9220b1dd4bb1ebe7c89'><td><a href='/date/2022-11-16T14:00:07/css-color-4/'>14:00:07 PST</a></td><td>2022-11-16 14:00:25 PST</td><td><span>fantasai</span></td><td>[css-color-4] Fix ED link</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c844b9f6084104fbb70a9220b1dd4bb1ebe7c89/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-11-16T14:00:07/bikeshed/css-color-4/'><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='41cb7fa642482ad48ab15d022684f6120407c6c8'><td><a href='/date/2022-11-16T07:33:30/css-color-4/'>07:33:30 PST</a></td><td>2022-11-16 07:33:19 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][editorial] New changes section since CRD</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/41cb7fa642482ad48ab15d022684f6120407c6c8/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-11-16T07:33:30/bikeshed/css-color-4/'><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-07</th><tr data-revised-hash='6678ebb343faa9457ea5cdfb34ac0ef775b6dbb5'><td><a href='/date/2022-11-07T11:16:48/css-color-4/'>11:16:48 PST</a></td><td>2022-11-07 11:16:43 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color] Consistent serialization, fix #7892</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6678ebb343faa9457ea5cdfb34ac0ef775b6dbb5/css-color-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-11-07T11:16:48/bikeshed/css-color-4/'><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-color-4/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-color-4/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 6</span><form accept-charset='utf-8' action='/history/page/2/css-color-4/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/6/css-color-4/' method='get'><input type='submit' value='Last'></form></div></div></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10