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='NkLI2uk+oUKG1woZGbbhxZmcD8E+8CZ15FB8bgwuzao=' 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='NkLI2uk+oUKG1woZGbbhxZmcD8E+8CZ15FB8bgwuzao=' 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='NkLI2uk+oUKG1woZGbbhxZmcD8E+8CZ15FB8bgwuzao=' type='text/javascript'><!-- // --></script><script nonce='NkLI2uk+oUKG1woZGbbhxZmcD8E+8CZ15FB8bgwuzao=' 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-cascade-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-cascade-5/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-cascade-5/'>Specification</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 2</span><a class='icon button next' href='/history/page/2/css-cascade-5/'></a><a class='icon button last' href='/history/page/2/css-cascade-5/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-cascade-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'>2023-12-11</th><tr data-revised-hash='f0086c44054329599d7dab7c0b5010b871d3626b'><td><a href='/date/2023-12-11T13:53:11/css-cascade-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-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-cascade-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-cascade-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-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-cascade-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-cascade-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-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-cascade-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='66c2e730ee1d217e5bfc374593e682dd66c3817b'><td><a href='/date/2023-07-21T08:55:41/css-cascade-5/'>08:55:41 PDT</a></td><td>2023-07-11 14:46:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[various][editorial] Fix markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/66c2e730ee1d217e5bfc374593e682dd66c3817b/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-07-21T08:55:41/bikeshed/css-cascade-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-cascade-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-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-06-07T08:02:17/bikeshed/css-cascade-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-05-07</th><tr data-revised-hash='2bd89c3c16b19ae15435ac07dea6205c201eaddd'><td><a href='/date/2023-05-07T21:39:40/css-cascade-5/'>21:39:40 PDT</a></td><td>2023-04-13 03:40:43 PDT</td><td><span>CanadaHonk</span></td><td>[cssom-1] Merge CSSImportRule layer extensions from cascade-5</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2bd89c3c16b19ae15435ac07dea6205c201eaddd/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-05-07T21:39:40/bikeshed/css-cascade-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-12-29</th><tr data-revised-hash='ff801b49975acde0d72d7b44300b394090c44340'><td><a href='/date/2022-12-29T17:44:05/css-cascade-5/'>17:44:05 PST</a></td><td>2022-12-29 17:43:26 PST</td><td><span>fantasai</span></td><td>[css-cascade] Fix links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ff801b49975acde0d72d7b44300b394090c44340/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-12-29T17:44:05/bikeshed/css-cascade-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-11-22</th><tr data-revised-hash='b292441571a7b164e50ff3ba9c038cf6df66f9aa'><td><a href='/date/2022-11-22T15:15:45/css-cascade-5/'>15:15:45 PST</a></td><td>2022-11-22 15:16:11 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-5][editorial] typo. Closes #8123</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b292441571a7b164e50ff3ba9c038cf6df66f9aa/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-11-22T15:15:45/bikeshed/css-cascade-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-10-21</th><tr data-revised-hash='306cfad6a26712d82c58824d8500b6d55997dd18'><td><a href='/date/2022-10-21T04:26:16/css-cascade-5/'>04:26:16 PDT</a></td><td>2022-10-21 04:26:06 PDT</td><td><span title='Simon Pieters'>spieters</span></td><td>[cascade-5] Fix CSSOM example in legacy alias name There is no `setPropertyValue()` method, change to `setProperty()`</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/306cfad6a26712d82c58824d8500b6d55997dd18/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-10-21T04:26:16/bikeshed/css-cascade-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-10-10</th><tr data-revised-hash='b5fa8c718bc66e66157de5d5dee6462f3d121ada'><td><a href='/date/2022-10-10T12:31:41/css-cascade-5/'>12:31:41 PDT</a></td><td>2022-10-10 12:29:51 PDT</td><td><span>fantasai</span></td><td>[css-values][css-cascade] Refactor CSS-wide keyword definitions #7439 * Move descriptive text from Values to Cascade * Define Cascade as source of keyword definitions</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b5fa8c718bc66e66157de5d5dee6462f3d121ada/css-cascade-5/Overview.bs'></a><a class='bikeshed previous' href='/date/2022-10-10T12:31:41/bikeshed/css-cascade-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-08-23</th><tr data-revised-hash='ebe3a000cfb83508e99089022d070852077a6e08'><td><a href='/date/2022-08-23T11:07:38/css-cascade-5/'>11:07:38 PDT</a></td><td>2022-08-23 11:07:07 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Example to clarify revert-layer in paired properties #7054</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ebe3a000cfb83508e99089022d070852077a6e08/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-23T11:07:38/bikeshed/css-cascade-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='6b89ee50e65c00b10434665bf1ca497aa88d1276'><td><a href='/date/2022-08-23T10:53:19/css-cascade-5/'>10:53:19 PDT</a></td><td>2022-08-23 10:52:00 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Clarify that only @layer statement rules are allowed before @import, not empty @layer blocks. #7566</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6b89ee50e65c00b10434665bf1ca497aa88d1276/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-23T10:53:19/bikeshed/css-cascade-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='144ee63321f4233926c33094555e90b81f4b83d2'><td><a href='/date/2022-08-23T04:35:51/css-cascade-5/'>04:35:51 PDT</a></td><td>2022-08-13 07:27:24 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-cascade-5] fix example syntax error for `@import layer;` The `&lt;&lt;layer-name&gt;&gt;` in the `layer()` function in the `@import` syntax cannot be omitted. ``` @import [ &lt;&lt;url&gt;&gt; | &lt;&lt;string&gt;&gt; ] [ layer | layer(&lt;&lt;layer-name&gt;&gt;) ]? &lt;&lt;import-condition&gt;&gt; ; ``` This means that the following example is wrong, `()` should be removed. ```css @import url(&quot;override.css&quot;) layer(); ```</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/144ee63321f4233926c33094555e90b81f4b83d2/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-23T04:35:51/bikeshed/css-cascade-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-08-04</th><tr data-revised-hash='64b27bc3b36402237936cefdac560ae8a2fdd56b'><td><a href='/date/2022-08-04T14:57:41/css-cascade-5/'>14:57:41 PDT</a></td><td>2022-08-04 14:57:12 PDT</td><td><span>fantasai</span></td><td>[css-cascade-4][css-cascade-5] Sync levels</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/64b27bc3b36402237936cefdac560ae8a2fdd56b/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-04T14:57:41/bikeshed/css-cascade-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='0be9a3c5a391b0aa40600d64d3dfd0a92a8e5aeb'><td><a href='/date/2022-08-04T14:12:46/css-cascade-5/'>14:12:46 PDT</a></td><td>2022-08-04 14:10:39 PDT</td><td><span>fantasai</span></td><td>[css-cascade-4][css-cascade-5] Clarify that revert/revert-layer affect all aliases of a property. #7054</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0be9a3c5a391b0aa40600d64d3dfd0a92a8e5aeb/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-04T14:12:46/bikeshed/css-cascade-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='1ad411a34f9db980c19bf83a49460d824a488a37'><td><a href='/date/2022-08-04T13:47:23/css-cascade-5/'>13:47:23 PDT</a></td><td>2022-08-04 13:46:14 PDT</td><td><span>fantasai</span></td><td>[css-cascade-4] Fix links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1ad411a34f9db980c19bf83a49460d824a488a37/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-04T13:47:23/bikeshed/css-cascade-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-04-14</th><tr data-revised-hash='717fafbf0cd29b8e571a84c90f5c805e58512c66'><td><a href='/date/2022-04-14T14:10:28/css-cascade-5/'>14:10:28 PDT</a></td><td>2022-04-14 14:09:19 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade][editorial] typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/717fafbf0cd29b8e571a84c90f5c805e58512c66/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-04-14T14:10:28/bikeshed/css-cascade-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-03-30</th><tr data-revised-hash='b52fe4b053ce9f723634909428d8cf9fb4d7c54f'><td><a href='/date/2022-03-30T15:40:02/css-cascade-5/'>15:40:02 PDT</a></td><td>2022-03-30 15:39:36 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-4][css-cascade-5] Define &#039;cascade-dependent keyword&#039;. #7080</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b52fe4b053ce9f723634909428d8cf9fb4d7c54f/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-30T15:40:02/bikeshed/css-cascade-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='306a9f3054ab4658476aaf724287e6c1342e2558'><td><a href='/date/2022-03-30T15:31:44/css-cascade-5/'>15:31:44 PDT</a></td><td>2022-03-30 15:31:17 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Crosslink &#039;declaration&#039; more often. #6837</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/306a9f3054ab4658476aaf724287e6c1342e2558/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-30T15:31:44/bikeshed/css-cascade-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='a3c3aa9ae9b60554b05f0d3a560b4ed8f7d2d385'><td><a href='/date/2022-03-30T15:24:30/css-cascade-5/'>15:24:30 PDT</a></td><td>2022-03-30 15:23:50 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] cross-link to CSS Style Attributes #6838</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a3c3aa9ae9b60554b05f0d3a560b4ed8f7d2d385/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-30T15:24:30/bikeshed/css-cascade-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='9681b0e0356bedc57da84ce3001336b8c2346a6d'><td><a href='/date/2022-03-30T14:21:21/css-cascade-5/'>14:21:21 PDT</a></td><td>2022-03-30 14:20:49 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-5] Clarify that revert-layer does not merge author and preshint origins. #7087</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9681b0e0356bedc57da84ce3001336b8c2346a6d/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-30T14:21:21/bikeshed/css-cascade-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='3410d2fce5629b5a69c2f6ccce5900f258b30eff'><td><a href='/date/2022-03-30T14:04:15/css-cascade-5/'>14:04:15 PDT</a></td><td>2022-03-30 14:03:48 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade][editorial] reformat acks</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3410d2fce5629b5a69c2f6ccce5900f258b30eff/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-30T14:04:15/bikeshed/css-cascade-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-03-29</th><tr data-revised-hash='200a7d80f478d34dc7ca52f8eeffb20591d56b1c'><td><a href='/date/2022-03-29T15:55:10/css-cascade-5/'>15:55:10 PDT</a></td><td>2022-03-29 15:54:38 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-5] Improve wording about layer order/precedence. #7041</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/200a7d80f478d34dc7ca52f8eeffb20591d56b1c/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-29T15:55:10/bikeshed/css-cascade-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='549e921b66e25e93fbe3aae7bd9a798ef792219c'><td><a href='/date/2022-03-29T15:32:09/css-cascade-5/'>15:32:09 PDT</a></td><td>2022-03-29 15:31:30 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-*] Consistently use &#039;precedence&#039; rather than &#039;priority&#039;.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/549e921b66e25e93fbe3aae7bd9a798ef792219c/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-29T15:32:09/bikeshed/css-cascade-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-02-14</th><tr data-revised-hash='a9b55c45e1529443b39852c46a5fab45dd6bd08c'><td><a href='/date/2022-02-14T13:33:37/css-cascade-5/'>13:33:37 PST</a></td><td>2022-02-14 13:33:08 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Replace source order with order of appearance</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a9b55c45e1529443b39852c46a5fab45dd6bd08c/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-02-14T13:33:37/bikeshed/css-cascade-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='287517c2f8ccb26b9e236f0daf1657fbdbca59a1'><td><a href='/date/2022-02-14T13:16:43/css-cascade-5/'>13:16:43 PST</a></td><td>2022-02-14 13:15:31 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Define import condition as syntax production</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/287517c2f8ccb26b9e236f0daf1657fbdbca59a1/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-02-14T13:16:43/bikeshed/css-cascade-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-01-11</th><tr data-revised-hash='a5ec62912c98c8d32599da932ff863222fb99c16'><td><a href='/date/2022-01-11T09:00:58/css-cascade-5/'>09:00:58 PST</a></td><td>2022-01-11 09:00:17 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-cascade-5] Back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a5ec62912c98c8d32599da932ff863222fb99c16/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-01-11T09:00:58/bikeshed/css-cascade-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-03</th><tr data-revised-hash='0dc3f1cf049cd95710fda15ed515adc58da8f0b9'><td><a href='/date/2021-12-03T15:55:31/css-cascade-5/'>15:55:31 PST</a></td><td>2021-12-03 15:54:55 PST</td><td><span>fantasai</span></td><td>[css-cascade-4][css-cascade-5] Use updated grammar style for @import&#039;s mq and sq references.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0dc3f1cf049cd95710fda15ed515adc58da8f0b9/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-03T15:55:31/bikeshed/css-cascade-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='8e91a7cfe3f6d4165aff6eb087632c5f52cd9275'><td><a href='/date/2021-12-03T15:39:39/css-cascade-5/'>15:39:39 PST</a></td><td>2021-12-03 15:39:15 PST</td><td><span>fantasai</span></td><td>[css-cascade][markup] Fix indentation.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8e91a7cfe3f6d4165aff6eb087632c5f52cd9275/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-03T15:39:39/bikeshed/css-cascade-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='e11c09356200d726280c388ef1716c60fe2afef4'><td><a href='/date/2021-12-03T15:26:04/css-cascade-5/'>15:26:04 PST</a></td><td>2021-12-03 15:23:54 PST</td><td><span>fantasai</span></td><td>[css-cascade][editorial] Fix markup.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e11c09356200d726280c388ef1716c60fe2afef4/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-03T15:26:04/bikeshed/css-cascade-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='885c50be40e8e3565a6815b68307b7fe614b973d'><td><a href='/date/2021-12-03T15:16:31/css-cascade-5/'>15:16:31 PST</a></td><td>2021-12-03 15:16:05 PST</td><td><span>fantasai</span></td><td>[css-cascade] Fix ED links. #6841</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/885c50be40e8e3565a6815b68307b7fe614b973d/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-03T15:16:31/bikeshed/css-cascade-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='85c82aba2ad3effbca62d58ad83089a6690c073c'><td><a href='/date/2021-12-03T15:13:41/css-cascade-5/'>15:13:41 PST</a></td><td>2021-12-03 15:13:19 PST</td><td><span>fantasai</span></td><td>[css-cascade] Allow functional notation parse-time aliases as well. #6193</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/85c82aba2ad3effbca62d58ad83089a6690c073c/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-03T15:13:41/bikeshed/css-cascade-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-01</th><tr data-revised-hash='e9f1412ae16d8600cb304906d61f534b2a267872'><td><a href='/date/2021-12-01T17:36:59/css-cascade-5/'>17:36:59 PST</a></td><td>2021-12-01 17:36:11 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>Update Overview.bs (#6852)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e9f1412ae16d8600cb304906d61f534b2a267872/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-01T17:36:59/bikeshed/css-cascade-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='47b71cca1923b29fa1f69f38f98dc25e667f195a'><td><a href='/date/2021-12-01T11:46:40/css-cascade-5/'>11:46:40 PST</a></td><td>2021-12-01 11:46:14 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-5] Make CSSImportRule.layerName nullable #6576 (#6849) Co-authored-by: Tab Atkins Jr &lt;jackalmage@gmail.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/47b71cca1923b29fa1f69f38f98dc25e667f195a/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-01T11:46:40/bikeshed/css-cascade-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-11-22</th><tr data-revised-hash='ceee373b45a962fe6eb2d9280dc27852aaa6b0aa'><td><a href='/date/2021-11-22T10:07:15/css-cascade-5/'>10:07:15 PST</a></td><td>2021-11-22 10:06:50 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Revert-layer in style attr does not revert author layers #6743</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ceee373b45a962fe6eb2d9280dc27852aaa6b0aa/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-22T10:07:15/bikeshed/css-cascade-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='db5f53b8701fc9180f08f997bee93eee759a3ed2'><td><a href='/date/2021-11-22T09:58:39/css-cascade-5/'>09:58:39 PST</a></td><td>2021-11-22 09:58:15 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Document issue with revert-layer in style attr</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/db5f53b8701fc9180f08f997bee93eee759a3ed2/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-22T09:58:39/bikeshed/css-cascade-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='69384114cb59a8b517587b3aead3596a07be3eab'><td><a href='/date/2021-11-22T09:46:48/css-cascade-5/'>09:46:48 PST</a></td><td>2021-11-22 09:45:52 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Clarify layer API, and update changes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/69384114cb59a8b517587b3aead3596a07be3eab/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-22T09:46:48/bikeshed/css-cascade-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-11-15</th><tr data-revised-hash='a42fdaa06b58a3ebe808bd9b54f82d05c0b92c43'><td><a href='/date/2021-11-15T17:04:10/css-cascade-5/'>17:04:10 PST</a></td><td>2021-11-15 17:03:35 PST</td><td><span>fantasai</span></td><td>[css-cascade-5] Cross-reference preshint rules https://github.com/w3c/csswg-drafts/issues/6735#issuecomment-946096220</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a42fdaa06b58a3ebe808bd9b54f82d05c0b92c43/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-15T17:04:10/bikeshed/css-cascade-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='8e48eb17c61b7ce8ac1ae3efaf81a5fda58bf5e5'><td><a href='/date/2021-11-15T16:58:37/css-cascade-5/'>16:58:37 PST</a></td><td>2021-11-15 16:58:13 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Clarify the behavior of layer syntax in @import #6776</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8e48eb17c61b7ce8ac1ae3efaf81a5fda58bf5e5/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-15T16:58:37/bikeshed/css-cascade-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='5f2ce25674c942bdb0758d216241f4d78e29de56'><td><a href='/date/2021-11-15T16:48:42/css-cascade-5/'>16:48:42 PST</a></td><td>2021-11-15 16:48:14 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Define CSSOM Layer APIs #6576</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5f2ce25674c942bdb0758d216241f4d78e29de56/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-15T16:48:42/bikeshed/css-cascade-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='1e57cd0fcc6aa2284667d2ee24cd7e9f445240ba'><td><a href='/date/2021-11-15T16:19:00/css-cascade-5/'>16:19:00 PST</a></td><td>2021-11-15 16:13:20 PST</td><td><span>fantasai</span></td><td>[css-cascade-5] Clarify revert-layer on style attr and keyframes. #6743 #6749</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1e57cd0fcc6aa2284667d2ee24cd7e9f445240ba/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-15T16:19:00/bikeshed/css-cascade-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='cb641098a20c36839e68f964fe2d454419b715bf'><td><a href='/date/2021-11-15T16:06:09/css-cascade-5/'>16:06:09 PST</a></td><td>2021-11-15 16:05:43 PST</td><td><span>fantasai</span></td><td>[css-cascade-5][editorial] Add hyphen.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cb641098a20c36839e68f964fe2d454419b715bf/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-15T16:06:09/bikeshed/css-cascade-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-10-27</th><tr data-revised-hash='53940f40d81817ace637523753c129e5e3a220c7'><td><a href='/date/2021-10-27T11:40:51/css-cascade-5/'>11:40:51 PDT</a></td><td>2021-10-27 11:39:43 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-4][css-cascade-5] Add value-aliasing section. #6193</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/53940f40d81817ace637523753c129e5e3a220c7/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-27T11:40:51/bikeshed/css-cascade-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-10-24</th><tr data-revised-hash='90ad68d2254f3cba40ce0155c3ae11492b85a1a0'><td><a href='/date/2021-10-24T09:18:29/css-cascade-5/'>09:18:29 PDT</a></td><td>2021-10-24 09:18:06 PDT</td><td><span title='Masataka Yakura'>masataka_yakura</span></td><td>[css-cascade-5] remove the duplicated note in the used values section That note was duplicated in https://github.com/w3c/csswg-drafts/commit/aba0111820c853888a158e99ebb284e18281de22 . This removes the first one to align with the Level 4 draft.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/90ad68d2254f3cba40ce0155c3ae11492b85a1a0/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-24T09:18:29/bikeshed/css-cascade-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-10-18</th><tr data-revised-hash='fbb3316cd97cd8da7ab28956c83f1ff829864703'><td><a href='/date/2021-10-18T15:29:30/css-cascade-5/'>15:29:30 PDT</a></td><td>2021-10-18 15:29:01 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade][editorial] Correctly reference cascade origin #6670</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbb3316cd97cd8da7ab28956c83f1ff829864703/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-18T15:29:30/bikeshed/css-cascade-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-10-15</th><tr data-revised-hash='2e4af6180ec7a3f8889ad5738a84bb04fbffe178'><td><a href='/date/2021-10-15T15:03:18/css-cascade-5/'>15:03:18 PDT</a></td><td>2021-10-15 15:02:52 PDT</td><td><span>fantasai</span></td><td>[css-cascade-4][css-cascade-5] Publication update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2e4af6180ec7a3f8889ad5738a84bb04fbffe178/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-15T15:03:18/bikeshed/css-cascade-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='47a56c63aad4802fe7496aa932a2bcfe11b2613a'><td><a href='/date/2021-10-15T14:35:07/css-cascade-5/'>14:35:07 PDT</a></td><td>2021-10-15 14:34:41 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade][editorial] Clarify reference to url/origin #6670</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/47a56c63aad4802fe7496aa932a2bcfe11b2613a/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-15T14:35:07/bikeshed/css-cascade-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='5720ba0a3b20eb92abe0592067290cb9277ad2d2'><td><a href='/date/2021-10-15T14:12:10/css-cascade-5/'>14:12:10 PDT</a></td><td>2021-10-15 14:11:38 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Clarify title of element-attached styles</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5720ba0a3b20eb92abe0592067290cb9277ad2d2/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-15T14:12:10/bikeshed/css-cascade-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-10-14</th><tr data-revised-hash='e87349cf4b390283ea563dc9ce5aee5492833e20'><td><a href='/date/2021-10-14T16:40:12/css-cascade-5/'>16:40:12 PDT</a></td><td>2021-10-14 16:39:40 PDT</td><td><span>fantasai</span></td><td>[css-cascade-4][css-cascade-5] Give presentational hits their own origin. #6659</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e87349cf4b390283ea563dc9ce5aee5492833e20/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-14T16:40:12/bikeshed/css-cascade-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-10-07</th><tr data-revised-hash='0908d77c5aa30634608979fd2cd62b620cf2d96f'><td><a href='/date/2021-10-07T10:24:29/css-cascade-5/'>10:24:29 PDT</a></td><td>2021-10-07 10:24:01 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Revert the ordering of unlayered styles #6284</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0908d77c5aa30634608979fd2cd62b620cf2d96f/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-07T10:24:29/bikeshed/css-cascade-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-10-04</th><tr data-revised-hash='14fa81d69d324464eaa9d3119bf20910f0583dcb'><td><a href='/date/2021-10-04T13:23:19/css-cascade-5/'>13:23:19 PDT</a></td><td>2021-10-04 13:22:42 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Fix missed edit for reversing order of unlayered declarations. #6284</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/14fa81d69d324464eaa9d3119bf20910f0583dcb/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-04T13:23:19/bikeshed/css-cascade-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-09-20</th><tr data-revised-hash='36fdfb903905e0b94ed65eaf39fbba220285878e'><td><a href='/date/2021-09-20T20:53:58/css-cascade-5/'>20:53:58 PDT</a></td><td>2021-09-20 19:51:46 PDT</td><td><span>fantasai</span></td><td>[css-cascade][editorial] Don&#039;t globally define productions in the @import definition.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/36fdfb903905e0b94ed65eaf39fbba220285878e/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-09-20T20:53:58/bikeshed/css-cascade-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-09-10</th><tr data-revised-hash='a66c333e705154f61bb1f0c2d1dfcf6ec4e28c07'><td><a href='/date/2021-09-10T11:06:13/css-cascade-5/'>11:06:13 PDT</a></td><td>2021-09-10 11:05:48 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-5] Add Missing Comma (#6592) Non-substantive contributions: Add missing comma to code example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a66c333e705154f61bb1f0c2d1dfcf6ec4e28c07/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-09-10T11:06:13/bikeshed/css-cascade-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-09-01</th><tr data-revised-hash='9e065e92428456df542fbfcfdb242174431daf84'><td><a href='/date/2021-09-01T11:18:36/css-cascade-5/'>11:18:36 PDT</a></td><td>2021-09-01 11:18:07 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Clarify ordering requirements in example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9e065e92428456df542fbfcfdb242174431daf84/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-09-01T11:18:36/bikeshed/css-cascade-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-08-31</th><tr data-revised-hash='4ba7197da9e7ca91b0e97e58c6e456291d358028'><td><a href='/date/2021-08-31T12:36:01/css-cascade-5/'>12:36:01 PDT</a></td><td>2021-08-31 11:56:01 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Fix singular/plural typo #6522</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4ba7197da9e7ca91b0e97e58c6e456291d358028/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-31T12:36:01/bikeshed/css-cascade-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-08-28</th><tr data-revised-hash='27599441250f87604288e8d079b18eb9f0b047f9'><td><a href='/date/2021-08-28T17:17:57/css-cascade-5/'>17:17:57 PDT</a></td><td>2021-08-28 17:17:33 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Make note understandable to people who don&#039;t know about the ?container query? proposal. #64907</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/27599441250f87604288e8d079b18eb9f0b047f9/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-28T17:17:57/bikeshed/css-cascade-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='b7c3d9db378ee38875b6cccdaefa2b8e478d5df2'><td><a href='/date/2021-08-28T16:57:04/css-cascade-5/'>16:57:04 PDT</a></td><td>2021-08-28 16:56:42 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Clarify where @layer can be placed, and what actually gets ignored. #6522</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b7c3d9db378ee38875b6cccdaefa2b8e478d5df2/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-28T16:57:04/bikeshed/css-cascade-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='4aa30d655c2dc79d80fdc1d32dde395e1720b98c'><td><a href='/date/2021-08-28T16:45:27/css-cascade-5/'>16:45:27 PDT</a></td><td>2021-08-28 16:44:55 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Fix ambiguities in wording.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4aa30d655c2dc79d80fdc1d32dde395e1720b98c/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-28T16:45:27/bikeshed/css-cascade-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='a553ae1c3230ea38189abc62bd9864ba06b6f2eb'><td><a href='/date/2021-08-28T02:58:34/css-cascade-5/'>02:58:34 PDT</a></td><td>2021-08-27 16:10:12 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Link previous publication</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a553ae1c3230ea38189abc62bd9864ba06b6f2eb/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-28T02:58:34/bikeshed/css-cascade-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-08-26</th><tr data-revised-hash='59d8da70c0fc834938e69b90035c4055f56ec5fa'><td><a href='/date/2021-08-26T10:01:26/css-cascade-5/'>10:01:26 PDT</a></td><td>2021-08-26 10:00:41 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Fix spelling typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/59d8da70c0fc834938e69b90035c4055f56ec5fa/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-26T10:01:26/bikeshed/css-cascade-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-08-25</th><tr data-revised-hash='ff88b8bc2ef306c3b7bdba2c316349a2a89b28de'><td><a href='/date/2021-08-25T12:53:55/css-cascade-5/'>12:53:55 PDT</a></td><td>2021-08-25 12:53:29 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Clean up documentation of changes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ff88b8bc2ef306c3b7bdba2c316349a2a89b28de/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-25T12:53:55/bikeshed/css-cascade-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='46c7acc5e477cbf420e7534a69e4380c5a14b9b7'><td><a href='/date/2021-08-25T11:54:26/css-cascade-5/'>11:54:26 PDT</a></td><td>2021-08-25 11:53:59 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Disallow empty @layer interspersed with @import or @namespace, #6522</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/46c7acc5e477cbf420e7534a69e4380c5a14b9b7/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-25T11:54:26/bikeshed/css-cascade-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-08-19</th><tr data-revised-hash='cb610245ce5e3884c6bb1087d5ee073aa4142c85'><td><a href='/date/2021-08-19T14:22:19/css-cascade-5/'>14:22:19 PDT</a></td><td>2021-08-19 14:21:49 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5][editorial] Fix nested layer syntax in @import example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cb610245ce5e3884c6bb1087d5ee073aa4142c85/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-08-19T14:22:19/bikeshed/css-cascade-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-07-27</th><tr data-revised-hash='7940ca8f66c001adfb8f721f3a907c8ec3ed51cd'><td><a href='/date/2021-07-27T15:34:10/css-cascade-5/'>15:34:10 PDT</a></td><td>2021-07-27 15:33:21 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Document change to layer name requirements</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7940ca8f66c001adfb8f721f3a907c8ec3ed51cd/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-07-27T15:34:10/bikeshed/css-cascade-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='14a6cbd05d4b4ccaa267da20b1fdb6777356940f'><td><a href='/date/2021-07-27T15:30:11/css-cascade-5/'>15:30:11 PDT</a></td><td>2021-07-27 15:29:47 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Reserve the CSS-wide keywords for later use in layer names #6323</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/14a6cbd05d4b4ccaa267da20b1fdb6777356940f/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-07-27T15:30:11/bikeshed/css-cascade-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-07-20</th><tr data-revised-hash='47156a406bb067d1b6b4c827e6196efe59b3cabe'><td><a href='/date/2021-07-20T09:36:37/css-cascade-5/'>09:36:37 PDT</a></td><td>2021-07-15 15:49:02 PDT</td><td><span title='Mason Freed'>mfreed</span></td><td>Update links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/47156a406bb067d1b6b4c827e6196efe59b3cabe/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-07-20T09:36:37/bikeshed/css-cascade-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-06-30</th><tr data-revised-hash='2b174e141c07aa6c6d8b57c8a38b941fab00595d'><td><a href='/date/2021-06-30T16:09:15/css-cascade-5/'>16:09:15 PDT</a></td><td>2021-06-30 16:08:45 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Define the ordering of conditional layers (#6407)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2b174e141c07aa6c6d8b57c8a38b941fab00595d/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-06-30T16:09:15/bikeshed/css-cascade-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='d96bc88d9068a46d4cb1c719819c02fae1660249'><td><a href='/date/2021-06-30T13:02:16/css-cascade-5/'>13:02:16 PDT</a></td><td>2021-06-30 13:01:47 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] name-defining at-rules use layer order to resolve name collisions</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d96bc88d9068a46d4cb1c719819c02fae1660249/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-06-30T13:02:16/bikeshed/css-cascade-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-06-08</th><tr data-revised-hash='7056034d4c7819954fe8882b1e4fa4218e363954'><td><a href='/date/2021-06-08T16:22:26/css-cascade-5/'>16:22:26 PDT</a></td><td>2021-06-08 16:21:59 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Post-publication status update.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7056034d4c7819954fe8882b1e4fa4218e363954/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-06-08T16:22:26/bikeshed/css-cascade-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='621f37891362d2be0986fb2429df02198c0acb88'><td><a href='/date/2021-06-08T13:09:05/css-cascade-5/'>13:09:05 PDT</a></td><td>2021-06-08 13:08:42 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Change status to WD</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/621f37891362d2be0986fb2429df02198c0acb88/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-06-08T13:09:05/bikeshed/css-cascade-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='57d5776812af6e3b9abcad8cd80ad9c41af018e3'><td><a href='/date/2021-06-08T12:55:25/css-cascade-5/'>12:55:25 PDT</a></td><td>2021-06-08 12:54:44 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Link previous version for publication</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/57d5776812af6e3b9abcad8cd80ad9c41af018e3/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-06-08T12:55:25/bikeshed/css-cascade-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='e57308a51c36b2875c20b37b5e6ca392038496d7'><td><a href='/date/2021-06-08T11:18:51/css-cascade-5/'>11:18:51 PDT</a></td><td>2021-06-08 11:18:08 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[cs-cascade-5] Link to issue from changelog</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e57308a51c36b2875c20b37b5e6ca392038496d7/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-06-08T11:18:51/bikeshed/css-cascade-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-05-28</th><tr data-revised-hash='cf61a8d1be8c5f73d12cf303d74f016f84895948'><td><a href='/date/2021-05-28T13:34:36/css-cascade-5/'>13:34:36 PDT</a></td><td>2021-05-28 13:34:10 PDT</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Move unlayered styles below explicit layers by default #6284</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cf61a8d1be8c5f73d12cf303d74f016f84895948/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-05-28T13:34:36/bikeshed/css-cascade-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-05-27</th><tr data-revised-hash='9a49303975d051d61417b238a02ee36b65b1a3a2'><td><a href='/date/2021-05-27T16:55:16/css-cascade-5/'>16:55:16 PDT</a></td><td>2021-05-27 16:54:17 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-5][editorial] Significant rewrite/reorg of the Cascade Layers section to be more rigorous/organized and improve examples.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9a49303975d051d61417b238a02ee36b65b1a3a2/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-05-27T16:55:16/bikeshed/css-cascade-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-05-17</th><tr data-revised-hash='dfe5f345ac420eb0f68ef11b2dd22835d623a876'><td><a href='/date/2021-05-17T14:26:46/css-cascade-5/'>14:26:46 PDT</a></td><td>2021-05-17 14:24:15 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Revert &quot;Revert &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot;&quot; This reverts commit 9d14c2393cfeca05c799d43444fe9c860074e80b. The commit that it was reverting was actually fine; it was a merge, but looked like it was bad because it had a large diff against the first parent but it had no diff against the second (which was the relevant one in a &quot;linear history&quot; of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-05-17T14:26:46/bikeshed/css-cascade-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='70d026dcb8e01b8e3b0898968180c45a2d0da901'><td><a href='/date/2021-05-17T13:52:15/css-cascade-5/'>13:52:15 PDT</a></td><td>2021-05-17 12:25:01 PDT</td><td><span title='Adam Argyle'>adam_argyle</span></td><td>Revert &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot; This reverts commit 442ca50fbfe14f5e163336a54844ba447d2bafa7, reversing changes made to d0337ce2a834e083954a3b090fd69ea918a0302a.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70d026dcb8e01b8e3b0898968180c45a2d0da901/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-05-17T13:52:15/bikeshed/css-cascade-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-04-01</th><tr data-revised-hash='fc33326580e69976a84b7e22fd848e95939b63dd'><td><a href='/date/2021-04-01T15:38:48/css-cascade-5/'>15:38:48 PDT</a></td><td>2021-04-01 15:38:27 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-5] possible typo (#6167) * possible typo * Update css-cascade-5/Overview.bs Co-authored-by: Tab Atkins Jr &lt;jackalmage@gmail.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fc33326580e69976a84b7e22fd848e95939b63dd/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-04-01T15:38:48/bikeshed/css-cascade-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-03-19</th><tr data-revised-hash='4024e21b3678b849ee6bcf6568e05fc1badd9c97'><td><a href='/date/2021-03-19T17:18:58/css-cascade-5/'>17:18:58 PDT</a></td><td>2021-03-19 17:18:33 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Fix more stray example errors. :/</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4024e21b3678b849ee6bcf6568e05fc1badd9c97/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-19T17:18:58/bikeshed/css-cascade-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='46e804c24d73581cdf189aa14eebc34564c52cfa'><td><a href='/date/2021-03-19T17:12:14/css-cascade-5/'>17:12:14 PDT</a></td><td>2021-03-19 17:11:50 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Define value resolution for fragmented boxes. #1510</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/46e804c24d73581cdf189aa14eebc34564c52cfa/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-19T17:12:14/bikeshed/css-cascade-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='59c00faaf6911f0a7261236e2f39357ccb1e4097'><td><a href='/date/2021-03-19T16:07:41/css-cascade-5/'>16:07:41 PDT</a></td><td>2021-03-19 16:06:57 PDT</td><td><span>fantasai</span></td><td>[css-cascade-5] Fix examples, update changes list, publication fixes.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/59c00faaf6911f0a7261236e2f39357ccb1e4097/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-19T16:07:41/bikeshed/css-cascade-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-03-12</th><tr data-revised-hash='399556219e63c935906039e054cc895e52728e2b'><td><a href='/date/2021-03-12T18:16:16/css-cascade-5/'>18:16:16 PST</a></td><td>2021-03-12 18:15:53 PST</td><td><span>fantasai</span></td><td>[css-cascade-5] Put preshint rules into their own author layer. #5856</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/399556219e63c935906039e054cc895e52728e2b/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-12T18:16:16/bikeshed/css-cascade-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='aa189881ca3c67aced7630174e9b7b74a3f3b2db'><td><a href='/date/2021-03-12T18:00:18/css-cascade-5/'>18:00:18 PST</a></td><td>2021-03-12 17:59:54 PST</td><td><span>fantasai</span></td><td>[css-cascade-5] Make anonymous layer @imports use keyword form. #5681</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aa189881ca3c67aced7630174e9b7b74a3f3b2db/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-12T18:00:18/bikeshed/css-cascade-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='3fe7baaaf97abfc9312118ec84a5337f6a865978'><td><a href='/date/2021-03-12T17:32:49/css-cascade-5/'>17:32:49 PST</a></td><td>2021-03-12 17:32:04 PST</td><td><span>fantasai</span></td><td>[css-cascade] Fix linking errors.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3fe7baaaf97abfc9312118ec84a5337f6a865978/css-cascade-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-12T17:32:49/bikeshed/css-cascade-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='21712d8fb735259f7764c796f6538bbc20fab6df'><td><a href='/date/2021-03-12T17:24:58/css-cascade-5/'>17:24:58 PST</a></td><td>2021-03-12 17:24:33 PST</td><td><span>fantasai</span></td><td>[css-cascade-5] Mark revert-layer at-risk</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/21712d8fb735259f7764c796f6538bbc20fab6df/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-03-12T17:24:58/bikeshed/css-cascade-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='286a38604aaa51a1ae3d6eef914da34a5c49abe5'><td><a href='/date/2021-03-12T16:56:17/css-cascade-5/'>16:56:17 PST</a></td><td>2021-03-12 16:54:37 PST</td><td><span>fantasai</span></td><td>[css-cascade-5] Minor clean-up of revert-level: * Add to &#039;all&#039; shorthand propdef * Remove resolved issue * Cross-link to definition of layers * Shift informative statement into a note</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/286a38604aaa51a1ae3d6eef914da34a5c49abe5/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-03-12T16:56:17/bikeshed/css-cascade-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='8150efd25f5c9c20a625ffc7fef62b95bb067c7e'><td><a href='/date/2021-03-12T16:43:53/css-cascade-5/'>16:43:53 PST</a></td><td>2021-03-12 16:42:51 PST</td><td><span>fantasai</span></td><td>[css-cascade] Fix linking error.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8150efd25f5c9c20a625ffc7fef62b95bb067c7e/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-03-12T16:43:53/bikeshed/css-cascade-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='0ac17a6373133a6ab05deb3e8ab762d309e1bbc9'><td><a href='/date/2021-03-12T14:09:05/css-cascade-5/'>14:09:05 PST</a></td><td>2021-03-12 14:08:37 PST</td><td><span>fantasai</span></td><td>[css-cascade] Re-sync across levels.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0ac17a6373133a6ab05deb3e8ab762d309e1bbc9/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-03-12T14:09:05/bikeshed/css-cascade-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-02-21</th><tr data-revised-hash='d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38'><td><a href='/date/2021-02-21T23:27:15/css-cascade-5/'>23:27:15 PST</a></td><td>2021-02-21 23:26:51 PST</td><td><span>fantasai</span></td><td>fix: typos across specs (#5992)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-02-21T23:27:15/bikeshed/css-cascade-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-02-19</th><tr data-revised-hash='e57d7afe4a1bfc2b7806035b7c91d2b899a15867'><td><a href='/date/2021-02-19T14:49:22/css-cascade-5/'>14:49:22 PST</a></td><td>2021-02-19 14:48:53 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Draft layer-import syntax (#5681)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e57d7afe4a1bfc2b7806035b7c91d2b899a15867/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-02-19T14:49:22/bikeshed/css-cascade-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='18f76bdbc605fb641729d5f3236fdbbbcd31dfa8'><td><a href='/date/2021-02-19T12:50:32/css-cascade-5/'>12:50:32 PST</a></td><td>2021-02-19 12:50:10 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>Update cascade-5 additions</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/18f76bdbc605fb641729d5f3236fdbbbcd31dfa8/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-02-19T12:50:32/bikeshed/css-cascade-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='87ff45aa369d942f35023ecf706b01f84b359eb4'><td><a href='/date/2021-02-19T12:45:46/css-cascade-5/'>12:45:46 PST</a></td><td>2021-02-19 12:45:06 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Draft revert-layer keyword behavior (#5793)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/87ff45aa369d942f35023ecf706b01f84b359eb4/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-02-19T12:45:46/bikeshed/css-cascade-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-02-12</th><tr data-revised-hash='af5afe2b4a18619bb61d704b1ed65940ff013e4e'><td><a href='/date/2021-02-12T14:46:21/css-cascade-5/'>14:46:21 PST</a></td><td>2021-02-12 14:45:30 PST</td><td><span title='Miriam Suzanne'>mirisuzanne</span></td><td>[css-cascade-5] Remove links to closed issues, resolved no-change</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/af5afe2b4a18619bb61d704b1ed65940ff013e4e/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-02-12T14:46:21/bikeshed/css-cascade-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-02-08</th><tr data-revised-hash='b0602c4c66ef99cc66f3fc8cbc078a0fcb61668e'><td><a href='/date/2021-02-08T11:41:48/css-cascade-5/'>11:41:48 PST</a></td><td>2021-02-08 11:41:26 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>typo: Double words (#5951) Co-authored-by: Rachel Andrew &lt;rachel.andrew@edgeofmyseat.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b0602c4c66ef99cc66f3fc8cbc078a0fcb61668e/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-02-08T11:41:48/bikeshed/css-cascade-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-01-18</th><tr data-revised-hash='ad8b7cb386253b53e9f4b6ec00aed52ff1291416'><td><a href='/date/2021-01-18T08:15:12/css-cascade-5/'>08:15:12 PST</a></td><td>2021-01-18 08:14:25 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-cascade-5] back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ad8b7cb386253b53e9f4b6ec00aed52ff1291416/css-cascade-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-01-18T08:15:12/bikeshed/css-cascade-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='bb4e929117897b21762082e90a1ad2f609d7b313'><td><a href='/date/2021-01-18T07:32:27/css-cascade-5/'>07:32:27 PST</a></td><td>2021-01-18 07:30:52 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[cssom-1] correct autolinking syntax</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bb4e929117897b21762082e90a1ad2f609d7b313/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-01-18T07:32:27/bikeshed/css-cascade-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-01-13</th><tr data-revised-hash='6e6402e41fdb39a14ccf64d4adc33258648b83df'><td><a href='/date/2021-01-13T16:30:19/css-cascade-5/'>16:30:19 PST</a></td><td>2021-01-13 16:29:31 PST</td><td><span>fantasai</span></td><td>[css-cascade] Sync 631c44c2cddbb888dc8e451aac7a35296e75af34 to all levels</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6e6402e41fdb39a14ccf64d4adc33258648b83df/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-01-13T16:30:19/bikeshed/css-cascade-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='243bae73d35bfbea554c8207466e05e5b7435b5a'><td><a href='/date/2021-01-13T13:54:39/css-cascade-5/'>13:54:39 PST</a></td><td>2021-01-13 13:38:25 PST</td><td><span>fantasai</span></td><td>[css-cascade] Define &#039;property&#039; as a term. #5633</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/243bae73d35bfbea554c8207466e05e5b7435b5a/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-01-13T13:54:39/bikeshed/css-cascade-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='342c4d3a768ea3ef61bc7c2a5855661b6691e0c1'><td><a href='/date/2021-01-13T12:52:44/css-cascade-5/'>12:52:44 PST</a></td><td>2021-01-13 12:52:20 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Make it clearer exactly what origins are being compared for @import in a quirks-mode document. Fixes #4838.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/342c4d3a768ea3ef61bc7c2a5855661b6691e0c1/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-01-13T12:52:44/bikeshed/css-cascade-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='0dffdf444dcfef6ad1df7ee15578062c4f5ef90b'><td><a href='/date/2021-01-13T12:30:22/css-cascade-5/'>12:30:22 PST</a></td><td>2021-01-13 12:29:54 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Fix a typo, and sync with level 5.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0dffdf444dcfef6ad1df7ee15578062c4f5ef90b/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-01-13T12:30:22/bikeshed/css-cascade-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='be43fcdbe30bba2a90874eb62890bb44993388f6'><td><a href='/date/2021-01-13T09:21:12/css-cascade-5/'>09:21:12 PST</a></td><td>2021-01-13 09:08:40 PST</td><td><span>fantasai</span></td><td>[css-cascade-5] Rename @layers to @layer. #5855</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/be43fcdbe30bba2a90874eb62890bb44993388f6/css-cascade-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-01-13T09:21:12/bikeshed/css-cascade-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-cascade-5/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-cascade-5/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 2</span><form accept-charset='utf-8' action='/history/page/2/css-cascade-5/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/2/css-cascade-5/' method='get'><input type='submit' value='Last'></form></div></div></body></html>

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