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='lQ5oVDd4k66X5i2orXrHaQRfeEiuWv1tc7BjKbwNpjA=' 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='lQ5oVDd4k66X5i2orXrHaQRfeEiuWv1tc7BjKbwNpjA=' 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='lQ5oVDd4k66X5i2orXrHaQRfeEiuWv1tc7BjKbwNpjA=' type='text/javascript'><!-- // --></script><script nonce='lQ5oVDd4k66X5i2orXrHaQRfeEiuWv1tc7BjKbwNpjA=' 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-conditional-5\/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-conditional-5/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-conditional-5/'>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-conditional-5/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-21</th><tr data-revised-hash='c30f3f45d7101a4f08103556e0744c771c4e464d'><td><a href='/date/2024-11-21T15:22:10/css-conditional-5/'>15:22:10 PST</a></td><td>2024-11-14 03:15:06 PST</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] Rename overflowing to scrollable #11182</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c30f3f45d7101a4f08103556e0744c771c4e464d/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-21T15:22:10/bikeshed/css-conditional-5/'><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-10</th><tr data-revised-hash='8c6bcf77d4ca43f4e76c173588f00b783d4f20fc'><td><a href='/date/2024-11-10T23:34:03/css-conditional-5/'>23:34:03 PST</a></td><td>2024-11-10 23:33:43 PST</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] Make <container-query> optional #9192 (#11172) Resolution: https://github.com/w3c/csswg-drafts/issues/9192#issuecomment-1789850349 Co-authored-by: Rune Lillesveen <futhark@google.com></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8c6bcf77d4ca43f4e76c173588f00b783d4f20fc/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-10T23:34:03/bikeshed/css-conditional-5/'><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-06</th><tr data-revised-hash='cee43e80226363d59a962fdebdc8303743a7fd7b'><td><a href='/date/2024-11-06T07:46:59/css-conditional-5/'>07:46:59 PST</a></td><td>2024-11-06 07:46:25 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5][editorial] back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cee43e80226363d59a962fdebdc8303743a7fd7b/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-06T07:46:59/bikeshed/css-conditional-5/'><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-31</th><tr data-revised-hash='ac3d548d4a728968b51a8319988ad53a3c093928'><td><a href='/date/2024-10-31T10:22:13/css-conditional-5/'>10:22:13 PDT</a></td><td>2024-10-31 09:46:43 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5][editorial] WPT for font tech and font format</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ac3d548d4a728968b51a8319988ad53a3c093928/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-31T10:22:13/bikeshed/css-conditional-5/'><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='5cdf977afc6d7cf49000f56dd0cb95e94c8d8689'><td><a href='/date/2024-10-31T07:32:10/css-conditional-5/'>07:32:10 PDT</a></td><td>2024-10-31 07:31:39 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>close wpt</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5cdf977afc6d7cf49000f56dd0cb95e94c8d8689/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-31T07:32:10/bikeshed/css-conditional-5/'><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-30</th><tr data-revised-hash='af6eb68556ca72a3ba5840445b8980cf49d10bee'><td><a href='/date/2024-10-30T05:06:35/css-conditional-5/'>05:06:35 PDT</a></td><td>2024-10-30 05:04:33 PDT</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] Prepare for publishing new WD</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/af6eb68556ca72a3ba5840445b8980cf49d10bee/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-30T05:06:35/bikeshed/css-conditional-5/'><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-29</th><tr data-revised-hash='c9b01c2678aa8db8341b551338c52c7ea64dd129'><td><a href='/date/2024-10-29T09:27:57/css-conditional-5/'>09:27:57 PDT</a></td><td>2024-10-29 09:27:36 PDT</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] Link scroll-state snapshotting to cssom-view #10796 (#11056) * [css-conditional-5] Link scroll-state snapshotting to cssom-view #10796 scroll-state() snapshotting should happen as part of "run snapshot post- layout state steps". * Typo * should -> must --------- Co-authored-by: Rune Lillesveen <futhark@google.com></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c9b01c2678aa8db8341b551338c52c7ea64dd129/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-29T09:27:57/bikeshed/css-conditional-5/'><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-14</th><tr data-revised-hash='aa72952ae4fed29bd3573a467923fa8cfb8f6146'><td><a href='/date/2024-10-14T12:48:07/css-conditional-5/'>12:48:07 PDT</a></td><td>2024-10-14 01:15:10 PDT</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] snapped matches scrollsnapchanging #10784 Edit to clarify the resolution[1] in #10784 that scroll-state(snapped) matches the snap target for scrollsnapchanging, not scrollsnapchanged. That is, the snapped query changes evaluation during a scroll operation. [1] https://github.com/w3c/csswg-drafts/issues/10784#issuecomment-2379901508</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aa72952ae4fed29bd3573a467923fa8cfb8f6146/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T12:48:07/bikeshed/css-conditional-5/'><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-07</th><tr data-revised-hash='711437a79e74cb1ba85bb98640eee4285950e251'><td><a href='/date/2024-10-07T11:06:07/css-conditional-5/'>11:06:07 PDT</a></td><td>2024-10-07 10:47:26 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-conditional-5][editorial] Export 'size feature'</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/711437a79e74cb1ba85bb98640eee4285950e251/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-07T11:06:07/bikeshed/css-conditional-5/'><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-18</th><tr data-revised-hash='3c6e9cbf66307acc18e00230318c87ba38d40328'><td><a href='/date/2024-09-18T01:19:23/css-conditional-5/'>01:19:23 PDT</a></td><td>2024-09-18 01:19:03 PDT</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] Add 'none'-keywords to scroll-state() features (#10874) - Unintentionally left out in the original scroll-state() PR. - Reference the media queries spec for boolean context evaluation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3c6e9cbf66307acc18e00230318c87ba38d40328/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-18T01:19:23/bikeshed/css-conditional-5/'><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='c93f77ffbf64c39abec2d640f65c051f477d7d43'><td><a href='/date/2024-09-04T10:34:37/css-conditional-5/'>10:34:37 PDT</a></td><td>2024-09-04 10:34:15 PDT</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] Draft spec for scroll-state() #6402 (#10798) Per resolution in [1], add scroll-state() as a query function to query sticky, snap, and overflow scroll states with a new container-type for scroll-state queries. [1] https://github.com/w3c/csswg-drafts/issues/6402#issuecomment-1812973013</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c93f77ffbf64c39abec2d640f65c051f477d7d43/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-04T10:34:37/bikeshed/css-conditional-5/'><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-02</th><tr data-revised-hash='0a77e234d8d895aa730a92241ff50f9c0c09362c'><td><a href='/date/2024-09-02T06:30:18/css-conditional-5/'>06:30:18 PDT</a></td><td>2024-09-02 06:29:45 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5][editorial] link defaults</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0a77e234d8d895aa730a92241ff50f9c0c09362c/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-02T06:30:18/bikeshed/css-conditional-5/'><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-08</th><tr data-revised-hash='89d54a568128ae092bfb3df47978b3fbecc56e18'><td><a href='/date/2024-08-08T16:23:40/css-conditional-5/'>16:23:40 PDT</a></td><td>2024-08-08 16:23:19 PDT</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] There is no container-type:style (#10709) Co-authored-by: Rune Lillesveen <futhark@chromium.org></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/89d54a568128ae092bfb3df47978b3fbecc56e18/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-08T16:23:40/bikeshed/css-conditional-5/'><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='d65f980e67cc89d811aa02429801ed5327910ccf'><td><a href='/date/2024-08-08T11:01:19/css-conditional-5/'>11:01:19 PDT</a></td><td>2024-08-08 04:45:28 PDT</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-conditional-5] Container queries use the flat tree #5984 (#10701) Per resolution in: https://github.com/w3c/csswg-drafts/issues/5984#issuecomment-2112977366 Co-authored-by: Rune Lillesveen <futhark@chromium.org></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d65f980e67cc89d811aa02429801ed5327910ccf/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-08T11:01:19/bikeshed/css-conditional-5/'><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='810552f03f4b844e26620888cce71d0ddb70ccf9'><td><a href='/date/2024-08-07T17:42:22/css-conditional-5/'>17:42:22 PDT</a></td><td>2024-08-07 17:41:39 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5][editorial] back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/810552f03f4b844e26620888cce71d0ddb70ccf9/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-07T17:42:22/bikeshed/css-conditional-5/'><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-18</th><tr data-revised-hash='3b91c4a7c75bd100265c028ff4b75bc2016b4a07'><td><a href='/date/2024-07-18T10:36:41/css-conditional-5/'>10:36:41 PDT</a></td><td>2024-07-18 10:32:22 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>changes for publication</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3b91c4a7c75bd100265c028ff4b75bc2016b4a07/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-07-18T10:36:41/bikeshed/css-conditional-5/'><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-17</th><tr data-revised-hash='8250e9128ecb9a1f0bde99bec7a94715aaf17c7e'><td><a href='/date/2024-07-17T08:55:18/css-conditional-5/'>08:55:18 PDT</a></td><td>2024-07-17 08:54:50 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5][editorial] Update changes since FPWD</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8250e9128ecb9a1f0bde99bec7a94715aaf17c7e/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-07-17T08:55:18/bikeshed/css-conditional-5/'><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-18</th><tr data-revised-hash='134160a458e40f584edb67da11528ba58268e658'><td><a href='/date/2024-06-18T07:32:28/css-conditional-5/'>07:32:28 PDT</a></td><td>2024-06-16 23:36:21 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-conditional-5] Add previous co-editor to acknowledgements</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/134160a458e40f584edb67da11528ba58268e658/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-18T07:32:28/bikeshed/css-conditional-5/'><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-27</th><tr data-revised-hash='2eb1b9674895a845f4da66e0c538b5ff6e957896'><td><a href='/date/2024-02-27T13:11:40/css-conditional-5/'>13:11:40 PST</a></td><td>2024-02-27 11:38:56 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5][editorial] Back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2eb1b9674895a845f4da66e0c538b5ff6e957896/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-27T13:11:40/bikeshed/css-conditional-5/'><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='f0086c44054329599d7dab7c0b5010b871d3626b'><td><a href='/date/2023-12-11T13:53:11/css-conditional-5/'>13:53:11 PST</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td>[meta] Affiliation change</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f0086c44054329599d7dab7c0b5010b871d3626b/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-conditional-5/'><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='f0086c44054329599d7dab7c0b5010b871d3626b'><td><a href='/date/2023-12-11T13:53:11/css-conditional-5/'>13:53:11 PST</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td>[meta] Affiliation change</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f0086c44054329599d7dab7c0b5010b871d3626b/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-conditional-5/'><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='f0086c44054329599d7dab7c0b5010b871d3626b'><td><a href='/date/2023-12-11T13:53:11/css-conditional-5/'>13:53:11 PST</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td>[meta] Affiliation change</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f0086c44054329599d7dab7c0b5010b871d3626b/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-conditional-5/'><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='0236560cd086d81d8c9016c478bb102a6278754a'><td><a href='/date/2023-07-21T08:55:41/css-conditional-5/'>08:55:41 PDT</a></td><td>2023-07-01 06:34:46 PDT</td><td><span>Guillaume</span></td><td>[css-conditional-5] Import <font-format> and <font-tech> from CSS Fonts (#8111) Co-authored-by: Chris Lilley <chris@w3.org></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0236560cd086d81d8c9016c478bb102a6278754a/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-07-21T08:55:41/bikeshed/css-conditional-5/'><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='b72b7fa7bbaab8c7cdebf84b57d474898c35ba2f'><td><a href='/date/2023-06-07T08:02:17/css-conditional-5/'>08:02:17 PDT</a></td><td>2023-05-12 14:24:24 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[various][editorial] Update to the new parsing algo names and block production names.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b72b7fa7bbaab8c7cdebf84b57d474898c35ba2f/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-06-07T08:02:17/bikeshed/css-conditional-5/'><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-03</th><tr data-revised-hash='d5ac18cb5b67fee076143abe6d5fff6f47cb4849'><td><a href='/date/2023-03-03T14:47:51/css-conditional-5/'>14:47:51 PST</a></td><td>2022-11-29 09:16:48 PST</td><td><span title='Francois Daoust'>francois_daoust</span></td><td>[css-conditional-5] Fix dfn of "<font-format>" Final `>` was missing.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d5ac18cb5b67fee076143abe6d5fff6f47cb4849/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-03-03T14:47:51/bikeshed/css-conditional-5/'><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-21</th><tr data-revised-hash='0191cfd9856f2b887ec1aac1cef862b0d03ecae8'><td><a href='/date/2022-06-21T03:06:22/css-conditional-5/'>03:06:22 PDT</a></td><td>2022-06-21 03:05:49 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5] Correct extra spaces in font-tech and font-format productions, fix #7369</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0191cfd9856f2b887ec1aac1cef862b0d03ecae8/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-21T03:06:22/bikeshed/css-conditional-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-14</th><tr data-revised-hash='ddd27150a48dc33e70e67eb3fcd59ec8039aac7f'><td><a href='/date/2021-12-14T18:39:21/css-conditional-5/'>18:39:21 PST</a></td><td>2021-12-14 18:37:42 PST</td><td><span>fantasai</span></td><td>[css-conditional-4][css-conditional-5] Split Level 4 ED * Existing feature (selector()) from FPWD, which is implemented and shipping, to go to CR in L4 * New features (font-*(), @when, @else) which were never published on /TR to go to FPWD in L5</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ddd27150a48dc33e70e67eb3fcd59ec8039aac7f/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-14T18:39:21/bikeshed/css-conditional-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-17</th><tr data-revised-hash='3d0285493d35cd43feb723c4f3207a4883fb9ea8'><td><a href='/date/2021-12-17T09:03:33/css-conditional-5/'>09:03:33 PST</a></td><td>2021-12-17 08:40:16 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-conditional-5] Changes for publication</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3d0285493d35cd43feb723c4f3207a4883fb9ea8/css-conditional-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-17T09:03:33/bikeshed/css-conditional-5/'><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-conditional-5/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-conditional-5/' 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-conditional-5/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/css-conditional-5/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>