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='busrJgJFaVFHnI2vmtDQLqW1K7d6Pnhekr9O2uDuaXI=' 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='busrJgJFaVFHnI2vmtDQLqW1K7d6Pnhekr9O2uDuaXI=' 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='busrJgJFaVFHnI2vmtDQLqW1K7d6Pnhekr9O2uDuaXI=' type='text/javascript'><!-- // --></script><script nonce='busrJgJFaVFHnI2vmtDQLqW1K7d6Pnhekr9O2uDuaXI=' 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-6\/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-6/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-color-6/'>Home</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 1</span><span class='icon button next disabled'></span><span class='icon button last disabled'></span></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-color-6/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-09-15</th><tr data-revised-hash='91baa3020dfd75766f8c375465b31f93e67c491b'><td><a href='/date/2024-09-15T06:55:22/css-color-6/'>06:55:22 PDT</a></td><td>2024-09-15 06:54:48 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-6][editorial] Need to add serialization of color-layers</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/91baa3020dfd75766f8c375465b31f93e67c491b/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-15T06:55:22/bikeshed/css-color-6/'><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='a2bfdea790382c343b9d6455fb6409c7061278e9'><td><a href='/date/2024-08-14T09:14:23/css-color-6/'>09:14:23 PDT</a></td><td>2024-08-14 07:14:47 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-6][editorial] wpt and whoops I see those had already been added</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a2bfdea790382c343b9d6455fb6409c7061278e9/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-14T09:14:23/bikeshed/css-color-6/'><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-10</th><tr data-revised-hash='2b435d75059bab876d9a890ed70af8d967d524c1'><td><a href='/date/2024-08-10T20:22:53/css-color-6/'>20:22:53 PDT</a></td><td>2024-08-10 20:21:45 PDT</td><td><span title='Tim Nguyen'>ntim</span></td><td>[css-color-6] Update slug and WPT for `color-layers()` (#10725)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2b435d75059bab876d9a890ed70af8d967d524c1/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-10T20:22:53/bikeshed/css-color-6/'><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='2f65effcdced61fe7ee6e1cc68ce297320ca0b6a'><td><a href='/date/2024-08-10T20:21:53/css-color-6/'>20:21:53 PDT</a></td><td>2024-08-10 20:21:14 PDT</td><td><span title='Tim Nguyen'>ntim</span></td><td>Update Overview.bs</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2f65effcdced61fe7ee6e1cc68ce297320ca0b6a/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-10T20:21:53/bikeshed/css-color-6/'><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='7895edde19c8e43e5958beaba504697298af7a9e'><td><a href='/date/2024-08-10T20:20:49/css-color-6/'>20:20:49 PDT</a></td><td>2024-08-10 20:20:27 PDT</td><td><span title='Tim Nguyen'>ntim</span></td><td>[css-color-6] Update slug and WPT for `color-layers()`</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7895edde19c8e43e5958beaba504697298af7a9e/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-10T20:20:49/bikeshed/css-color-6/'><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-07</th><tr data-revised-hash='9e58dfbe0a0a78b2a6e20331b3e1fe54719f2664'><td><a href='/date/2024-08-07T17:53:19/css-color-6/'>17:53:19 PDT</a></td><td>2024-08-07 17:52:43 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-6] Defined resolving color-layers(), including with currentColor #8431</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9e58dfbe0a0a78b2a6e20331b3e1fe54719f2664/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-07T17:53:19/bikeshed/css-color-6/'><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='a42bf2558499b9df38b11e110f7e5110cafc83ae'><td><a href='/date/2024-08-07T17:34:40/css-color-6/'>17:34:40 PDT</a></td><td>2024-08-07 17:34:09 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a42bf2558499b9df38b11e110f7e5110cafc83ae/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-07T17:34:40/bikeshed/css-color-6/'><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='475c09b3331a07ec32b4cd00d48f1441660691aa'><td><a href='/date/2024-08-07T17:32:23/css-color-6/'>17:32:23 PDT</a></td><td>2024-08-07 17:30:54 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-6] Add color-layers() function, #8431</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/475c09b3331a07ec32b4cd00d48f1441660691aa/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-07T17:32:23/bikeshed/css-color-6/'><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='19012fee09496f7ea82bfdd0077d85afe650eb45'><td><a href='/date/2024-02-26T15:09:25/css-color-6/'>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-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-26T15:09:25/bikeshed/css-color-6/'><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-15</th><tr data-revised-hash='ab0ee121019b9516fbbb789ae4d16b0fe4cfb85e'><td><a href='/date/2023-02-15T20:48:58/css-color-6/'>20:48:58 PST</a></td><td>2023-02-15 20:48:01 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-6][editorial] Fix #8458</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ab0ee121019b9516fbbb789ae4d16b0fe4cfb85e/css-color-6/Overview.bs'></a><a class='bikeshed previous' href='/date/2023-02-15T20:48:58/bikeshed/css-color-6/'><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='ec2d05d558b32c5224f8b112726bd1ee2b6e3738'><td><a href='/date/2023-01-12T10:20:13/css-color-6/'>10:20:13 PST</a></td><td>2023-01-12 09:55:12 PST</td><td><span title='Francois Daoust'>francois_daoust</span></td><td>[css-color-6] Fix typo in wcag2 keyword Prose says keyword is `wcag2`, not `wcag`.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ec2d05d558b32c5224f8b112726bd1ee2b6e3738/css-color-6/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-01-12T10:20:13/bikeshed/css-color-6/'><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-09</th><tr data-revised-hash='a57db02251aadead65c34b29096b15618d2080e4'><td><a href='/date/2023-01-09T08:37:00/css-color-6/'>08:37:00 PST</a></td><td>2023-01-09 06:42:57 PST</td><td><span title='Francois Daoust'>francois_daoust</span></td><td>[css-color-6] Fix typo in color-contrast() syntax One `]` character was missing.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a57db02251aadead65c34b29096b15618d2080e4/css-color-6/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-01-09T08:37:00/bikeshed/css-color-6/'><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-10-21</th><tr data-revised-hash='05f724aa90b80524335fd74d564fe564ba221974'><td><a href='/date/2022-10-21T07:29:36/css-color-6/'>07:29:36 PDT</a></td><td>2022-10-21 07:29:24 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] Add handling for non-opaque colors in contrast-color() Relates to #7358 Co-Authored-By: fantasai &lt;725717+fantasai@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/05f724aa90b80524335fd74d564fe564ba221974/css-color-6/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-10-21T07:29:36/bikeshed/css-color-6/'><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-10-20</th><tr data-revised-hash='949fdb27d47b683e0322162e65c6988fec283e56'><td><a href='/date/2022-10-20T14:01:37/css-color-6/'>14:01:37 PDT</a></td><td>2022-10-20 14:01:24 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] Rewrite serialization section for contrast-color() Co-Authored-By: fantasai &lt;725717+fantasai@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/949fdb27d47b683e0322162e65c6988fec283e56/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-20T14:01:37/bikeshed/css-color-6/'><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='b231d46ba6721d46bd8a56629593c4289f3b857b'><td><a href='/date/2022-10-20T13:50:35/css-color-6/'>13:50:35 PDT</a></td><td>2022-10-20 13:50:22 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] Prepare prose for multiple contrast algorithms, see #7357 Co-Authored-By: fantasai &lt;725717+fantasai@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b231d46ba6721d46bd8a56629593c4289f3b857b/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-20T13:50:35/bikeshed/css-color-6/'><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='26fb0ec15bcd562a6c3855118e20c885b727f35a'><td><a href='/date/2022-10-20T13:35:41/css-color-6/'>13:35:41 PDT</a></td><td>2022-10-20 13:35:13 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] Add note wrt multiple contrast algorithms Co-Authored-By: fantasai &lt;725717+fantasai@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/26fb0ec15bcd562a6c3855118e20c885b727f35a/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-20T13:35:41/bikeshed/css-color-6/'><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='c28f5537452c60fb03f0a6437c108737f3c713d9'><td><a href='/date/2022-10-20T13:31:42/css-color-6/'>13:31:42 PDT</a></td><td>2022-10-20 13:30:54 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] Change syntax per NYC F2F resolutions #7359 - Dropped `to` and `vs` keywords - Moved algorithm to prelude - Added tbd keywords to distinguish foreground and background Co-Authored-By: fantasai &lt;725717+fantasai@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c28f5537452c60fb03f0a6437c108737f3c713d9/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-20T13:31:42/bikeshed/css-color-6/'><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='2b19e78bc4ba8f4aaac4f4befdc768fe5a1dcff8'><td><a href='/date/2022-10-20T12:39:27/css-color-6/'>12:39:27 PDT</a></td><td>2022-10-20 12:39:14 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] contrast-color() algorithm syntax changes - If color candidates are provided, algorithm is mandatory, otherwise a UA dependent algorithm is used (part of the resolution in #7361 ) - Reorganization of prose and examples - Add keyword to specify algorithm without target contrast Co-Authored-By: fantasai &lt;725717+fantasai@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2b19e78bc4ba8f4aaac4f4befdc768fe5a1dcff8/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-20T12:39:27/bikeshed/css-color-6/'><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-10-19</th><tr data-revised-hash='4e03e6b3e2021b1358a61a7dc4d4adb54babd16e'><td><a href='/date/2022-10-19T13:39:15/css-color-6/'>13:39:15 PDT</a></td><td>2022-10-19 13:39:02 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] syntax to specify contrast algorithm for contrast-color(), following WG resolution Closes #7356</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e03e6b3e2021b1358a61a7dc4d4adb54babd16e/css-color-6/Overview.bs'></a><a class='bikeshed success' href='/date/2022-10-19T13:39:15/bikeshed/css-color-6/'><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='cef2ecd2645e94209909e244a518d895e76619c7'><td><a href='/date/2022-10-19T12:47:34/css-color-6/'>12:47:34 PDT</a></td><td>2022-10-19 12:47:16 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] Make contrast-color() candidates optional Also move grammar above description of syntax, and some minor prose cleanup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cef2ecd2645e94209909e244a518d895e76619c7/css-color-6/Overview.bs'></a><a class='bikeshed success' href='/date/2022-10-19T12:47:34/bikeshed/css-color-6/'><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='438b16b1dbf0db4f479229a88f32b01d8b4b0e59'><td><a href='/date/2022-10-19T12:28:06/css-color-6/'>12:28:06 PDT</a></td><td>2022-10-19 12:27:52 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td>[css-color-6] Rename color-contrast() to contrast-color(), closes #7557</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/438b16b1dbf0db4f479229a88f32b01d8b4b0e59/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-19T12:28:06/bikeshed/css-color-6/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-06-15</th><tr data-revised-hash='1385f22df4b1dfaf169ac7870436ea3ddd728fe3'><td><a href='/date/2022-06-15T11:09:38/css-color-6/'>11:09:38 PDT</a></td><td>2022-06-15 11:09:02 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color] Move color-contrast() to level 6 following formal objection</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1385f22df4b1dfaf169ac7870436ea3ddd728fe3/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-15T11:09:38/bikeshed/css-color-6/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-06-17</th><tr data-revised-hash='9faaa43fcc6eceb10494c84f742b56349d186f23'><td><a href='/date/2022-06-17T04:23:58/css-color-6/'>04:23:58 PDT</a></td><td>2022-06-17 04:23:29 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-6][editorial] Consistent number of this level</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9faaa43fcc6eceb10494c84f742b56349d186f23/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-17T04:23:58/bikeshed/css-color-6/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-06-20</th><tr data-revised-hash='b06ec6451591b965d5944091812fa5219ce3862a'><td><a href='/date/2022-06-20T06:56:59/css-color-6/'>06:56:59 PDT</a></td><td>2022-06-20 06:56:25 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-5] not ready for implementation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b06ec6451591b965d5944091812fa5219ce3862a/css-color-6/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-20T06:56:59/bikeshed/css-color-6/'><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-6/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-color-6/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 1</span><form accept-charset='utf-8' action='/history/page/2/css-color-6/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/css-color-6/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>

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