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='aDXgkb5kagGaEfTXhO/QcB+1lQBO+yOkQ8r6UQ++tzk=' 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='aDXgkb5kagGaEfTXhO/QcB+1lQBO+yOkQ8r6UQ++tzk=' 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='aDXgkb5kagGaEfTXhO/QcB+1lQBO+yOkQ8r6UQ++tzk=' type='text/javascript'><!-- // --></script><script nonce='aDXgkb5kagGaEfTXhO/QcB+1lQBO+yOkQ8r6UQ++tzk=' 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-3\/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-3/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-cascade-3/'>Home</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 1</span><span class='icon button next disabled'></span><span class='icon button last disabled'></span></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-cascade-3/Overview.html:</h3><table class='list tbody' id='history_table'><thead><tr><th>Uploaded</th><th>Revised</th><th>By</th><th>Comment</th><th></th></tr></thead><tbody><th colspan='5'>2024-01-30</th><tr data-revised-hash='9869207c56639b28aad4b2882fa8d2793cb0b101'><td><a href='/date/2024-01-30T10:23:45/css-cascade-3/'>10:23:45 PST</a></td><td>2024-01-30 08:39:12 PST</td><td><span title='Chris Harrelson'>chris_harrelson</span></td><td>[css-viewport] [cssom-view-1] Add a definition of the `zoom` CSS property (#9699) * Add definition of the zoom css property * Spell out the complete spec * none * Avoid zero * Further clarifications * Add zoom in more places * Fixes to formatting * Fixes to formatting * Replace 'or zoom' with 'unscaled' * Fix formatting and add alt text * Shorten notes * Shorten heading * Add background images * Omit fenced frames; clarify note about iframes * Fix spec reference type * Fix spaces and tabs * Fix some lint issues * Remove stray character * Remove more 'and zoom' * fix unscaled * Fix newlines * Special-case 0 and 0% * HTMLImageElement.{x,y} should be scaled * Address code review feedback * Address code review comments * Fix flat tree * Add notes about web compat * Fix references that should say 'scaled' * Clarify effective zoom * Fix typo Co-authored-by: Simon Pieters <zcorpan@gmail.com> * Switch to used value instead of computed style * define used value instead of claiming it as a consequence * Clarify flat tree ancestors --------- Co-authored-by: Simon Pieters <zcorpan@gmail.com></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9869207c56639b28aad4b2882fa8d2793cb0b101/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-01-30T10:23:45/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-12-11</th><tr data-revised-hash='f0086c44054329599d7dab7c0b5010b871d3626b'><td><a href='/date/2023-12-11T13:53:11/css-cascade-3/'>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-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-07-21T08:55:41/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-29T17:44:05/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed previous' href='/date/2022-10-10T12:31:41/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-04-14T14:10:28/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='306a9f3054ab4658476aaf724287e6c1342e2558'><td><a href='/date/2022-03-30T15:31:44/css-cascade-3/'>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 'declaration' more often. #6837</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/306a9f3054ab4658476aaf724287e6c1342e2558/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-30T15:31:44/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-30T15:24:30/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-30T14:04:15/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='549e921b66e25e93fbe3aae7bd9a798ef792219c'><td><a href='/date/2022-03-29T15:32:09/css-cascade-3/'>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 'precedence' rather than 'priority'.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/549e921b66e25e93fbe3aae7bd9a798ef792219c/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-29T15:32:09/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e11c09356200d726280c388ef1716c60fe2afef4'><td><a href='/date/2021-12-03T15:26:04/css-cascade-3/'>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-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-03T15:26:04/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-18T15:29:30/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='47a56c63aad4802fe7496aa932a2bcfe11b2613a'><td><a href='/date/2021-10-15T14:35:07/css-cascade-3/'>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-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-15T14:35:07/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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 "Revert "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main"" 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 "linear history" of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-05-17T14:26:46/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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 "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main" 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-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T13:52:15/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3fe7baaaf97abfc9312118ec84a5337f6a865978'><td><a href='/date/2021-03-12T17:32:49/css-cascade-3/'>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-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-03-12T17:32:49/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-03-12T16:43:53/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='36043af30d8e8e2fbad28e7d93429bff7ba5e0d5'><td><a href='/date/2021-03-12T14:17:17/css-cascade-3/'>14:17:17 PST</a></td><td>2021-03-12 14:16:52 PST</td><td><span>fantasai</span></td><td>[css-cascade-3] Clear out Changes section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/36043af30d8e8e2fbad28e7d93429bff7ba5e0d5/css-cascade-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-03-12T14:17:17/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-03-12T14:09:05/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-28</th><tr data-revised-hash='4dbc63bab4dfde28a622602e9f98f0d7712cf4be'><td><a href='/date/2021-01-28T03:56:27/css-cascade-3/'>03:56:27 PST</a></td><td>2021-01-28 03:52:42 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-cascade-3] fix typo noticed in AC review</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4dbc63bab4dfde28a622602e9f98f0d7712cf4be/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-01-28T03:56:27/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/'>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-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-01-13T16:30:19/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-21</th><tr data-revised-hash='1b411475668530ed8cde1c641b976caa49839cff'><td><a href='/date/2020-12-21T13:16:11/css-cascade-3/'>13:16:11 PST</a></td><td>2020-12-21 13:15:52 PST</td><td><span>fantasai</span></td><td>[css-cascade] Include 'directly' #5565</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1b411475668530ed8cde1c641b976caa49839cff/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-21T13:16:11/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='4f3d29713fbaaa762f7477372322a66e2f2cfda6'><td><a href='/date/2020-12-21T13:03:46/css-cascade-3/'>13:03:46 PST</a></td><td>2020-12-21 13:02:02 PST</td><td><span>fantasai</span></td><td>[css-cascade-3][css-cascade-4] Tweak applies-to wording, shift note to L4, which needs more editorial work. #5565</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4f3d29713fbaaa762f7477372322a66e2f2cfda6/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-21T13:03:46/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-20</th><tr data-revised-hash='2c7eb159d8394cd7b5c5775883aed42726f79dd9'><td><a href='/date/2020-12-20T23:11:54/css-cascade-3/'>23:11:54 PST</a></td><td>2020-12-20 23:11:16 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-cascade-3] Changes for Proposed Rec publishing</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c7eb159d8394cd7b5c5775883aed42726f79dd9/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-20T23:11:54/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-10-02</th><tr data-revised-hash='10498b1d792a672fd82ecbc2e49781ab7ca7b3ac'><td><a href='/date/2020-10-02T17:29:42/css-cascade-3/'>17:29:42 PDT</a></td><td>2020-10-02 17:29:22 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>Merge pull request #5562 from frivoal/does-not-apply [css-cascade] Editorial: clarify "does not apply"</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/10498b1d792a672fd82ecbc2e49781ab7ca7b3ac/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-10-02T17:29:42/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-10-01</th><tr data-revised-hash='62cb7ee7e1777e971f278063e13ea0fb24ad4561'><td><a href='/date/2020-10-01T11:07:18/css-cascade-3/'>11:07:18 PDT</a></td><td>2020-10-01 11:06:51 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Fix references and cross-links.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/62cb7ee7e1777e971f278063e13ea0fb24ad4561/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-10-01T11:07:18/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-09-30</th><tr data-revised-hash='5388f73b6fbac8c5995ca1f20465c936b03d9488'><td><a href='/date/2020-09-30T10:33:39/css-cascade-3/'>10:33:39 PDT</a></td><td>2020-09-30 10:33:20 PDT</td><td><span>fantasai</span></td><td>[css-cascade] scoping commentary scoped to L4..</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5388f73b6fbac8c5995ca1f20465c936b03d9488/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-30T10:33:39/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='9d93dbc7be846324960a737281100f04b24dff5e'><td><a href='/date/2020-09-30T10:30:34/css-cascade-3/'>10:30:34 PDT</a></td><td>2020-09-30 10:30:15 PDT</td><td><span>fantasai</span></td><td>[css-cascade] level sync</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9d93dbc7be846324960a737281100f04b24dff5e/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-30T10:30:34/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-09-10</th><tr data-revised-hash='c4a4cd13ea7596145df08f46f978acbc4d638de4'><td><a href='/date/2020-09-10T22:59:46/css-cascade-3/'>22:59:46 PDT</a></td><td>2020-09-10 22:59:06 PDT</td><td><span>fantasai</span></td><td>[css-cascade] mention what it means to not apply, add explicit ID #1861</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c4a4cd13ea7596145df08f46f978acbc4d638de4/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-10T22:59:46/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='0606de59f868aaa86655546c6f8cc277f8a27660'><td><a href='/date/2020-09-10T21:34:36/css-cascade-3/'>21:34:36 PDT</a></td><td>2020-09-10 21:14:32 PDT</td><td><span>fantasai</span></td><td>[css-cascade-3] Add note about applies-to on pseudo-elements; dfn applies-to #1861"</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0606de59f868aaa86655546c6f8cc277f8a27660/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-10T21:34:36/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f2d11f9e3dba0db30ceab2b7df3c6b22229f63db'><td><a href='/date/2020-09-10T21:08:03/css-cascade-3/'>21:08:03 PDT</a></td><td>2020-09-10 21:07:38 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Consolidate bits of applies-to text. Editorial.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f2d11f9e3dba0db30ceab2b7df3c6b22229f63db/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-10T21:08:03/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-08-17</th><tr data-revised-hash='f3d40747838564544511aa02995a428a2dc0f9e2'><td><a href='/date/2020-08-17T16:08:11/css-cascade-3/'>16:08:11 PDT</a></td><td>2020-08-17 16:05:16 PDT</td><td><span>fantasai</span></td><td>[css-cascade-3] Forgot to mention initial keyword, which was not part of CSS2 either.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f3d40747838564544511aa02995a428a2dc0f9e2/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-17T16:08:11/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-08-14</th><tr data-revised-hash='9f455e091a003536ee18b22ee7ff12d9d4d5be2c'><td><a href='/date/2020-08-14T16:59:04/css-cascade-3/'>16:59:04 PDT</a></td><td>2020-08-14 16:58:45 PDT</td><td><span>fantasai</span></td><td>[css-cascade-3] Add changes list.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9f455e091a003536ee18b22ee7ff12d9d4d5be2c/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-14T16:59:04/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='29d78c71564d91cefad669b72e49cd005aaa88e4'><td><a href='/date/2020-08-14T16:26:52/css-cascade-3/'>16:26:52 PDT</a></td><td>2020-08-14 16:26:32 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Link cascade to its definition.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/29d78c71564d91cefad669b72e49cd005aaa88e4/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-14T16:26:52/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='422e6d5dc6e3d8d525fd878bf331735cfc61537a'><td><a href='/date/2020-08-14T15:20:10/css-cascade-3/'>15:20:10 PDT</a></td><td>2020-08-14 15:19:47 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Simplify @charset parenthetical. #5313</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/422e6d5dc6e3d8d525fd878bf331735cfc61537a/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-14T15:20:10/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='5cd442efae2c0f9b1d916ba3534f4a6e3bbbdb3d'><td><a href='/date/2020-08-14T15:17:01/css-cascade-3/'>15:17:01 PDT</a></td><td>2020-08-14 15:16:43 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Clarify how @import behaves with invalid rules #5358 This change also modifies the mention of @charset as an example of an at-rule with restrictions on its relative ordering to replace it with @namespace, since @charset is no longer considered an at-rule.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5cd442efae2c0f9b1d916ba3534f4a6e3bbbdb3d/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-14T15:17:01/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='5173fa00df20a3a3375765abaaef95110e815ecc'><td><a href='/date/2020-08-14T15:02:25/css-cascade-3/'>15:02:25 PDT</a></td><td>2020-08-14 15:01:56 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Improve cascade origin cross-linking</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5173fa00df20a3a3375765abaaef95110e815ecc/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-14T15:02:25/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-08-10</th><tr data-revised-hash='17ffb736ae162a9b72f5342fbc1e92b836efb5fb'><td><a href='/date/2020-08-10T15:27:48/css-cascade-3/'>15:27:48 PDT</a></td><td>2020-08-10 15:27:22 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Add subheading for cascade order</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/17ffb736ae162a9b72f5342fbc1e92b836efb5fb/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-10T15:27:48/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-08-07</th><tr data-revised-hash='dfbd4eeccb2f5793885961ff9d52ec007e30da89'><td><a href='/date/2020-08-07T13:58:25/css-cascade-3/'>13:58:25 PDT</a></td><td>2020-08-07 13:58:01 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Squash gratuitous editorial / markup differences between L3 & L4.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfbd4eeccb2f5793885961ff9d52ec007e30da89/css-cascade-3/Overview.bs'></a><a class='bikeshed previous' href='/date/2020-08-07T13:58:25/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-08-04</th><tr data-revised-hash='eb8ab7364c38d48ba412b519376a8c1c288d7c9c'><td><a href='/date/2020-08-04T20:27:39/css-cascade-3/'>20:27:39 PDT</a></td><td>2020-08-04 20:27:15 PDT</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td>[css-cascade] Update spec metadata</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/eb8ab7364c38d48ba412b519376a8c1c288d7c9c/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-04T20:27:39/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-06-28</th><tr data-revised-hash='1416694ff8cac14c54e8b87883aad58b9be1d0e6'><td><a href='/date/2019-06-28T12:22:25/css-cascade-3/'>12:22:25 PDT</a></td><td>2019-06-28 12:21:43 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Add note about how 'computed value' definitions are *not* serialization definitions. Fixes #4060.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1416694ff8cac14c54e8b87883aad58b9be1d0e6/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-06-28T12:22:25/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-05-23</th><tr data-revised-hash='002ecc8c081057bb9bddb677b229ae4bb4a0240a'><td><a href='/date/2019-05-23T15:20:49/css-cascade-3/'>15:20:49 PDT</a></td><td>2019-05-10 18:14:18 PDT</td><td><span>ericwilligers</span></td><td>Link to CSS Values definition of ex units Link to css-values definition of ex units instead of css-inline-3 leading-trim keyword ex. (Specs already link to css-values for em.) css-cascade-3 links to mediaqueries-4 instead of css-cascade-4 for media-query.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/002ecc8c081057bb9bddb677b229ae4bb4a0240a/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-23T15:20:49/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-08-22</th><tr data-revised-hash='fb4760f3790e13009324b1deb3c5f45bd887f506'><td><a href='/date/2018-08-22T07:34:13/css-cascade-3/'>07:34:13 PDT</a></td><td>2018-08-22 07:33:00 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>fix #3041</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fb4760f3790e13009324b1deb3c5f45bd887f506/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-08-22T07:34:13/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-08-17</th><tr data-revised-hash='0768e2878668b9a9a7cda38e987e8acc933affe2'><td><a href='/date/2018-08-17T09:53:28/css-cascade-3/'>09:53:28 PDT</a></td><td>2018-08-17 09:46:02 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Update references to new shortname style.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0768e2878668b9a9a7cda38e987e8acc933affe2/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-08-17T09:53:28/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='08487c5fe3a59303d2ef46d945de0f4877b17bc2'><td><a href='/date/2018-08-17T00:44:21/css-cascade-3/'>00:44:21 PDT</a></td><td>2018-08-17 00:43:53 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Synchronize L3 and L4 and update changes lists.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/08487c5fe3a59303d2ef46d945de0f4877b17bc2/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-08-17T00:44:21/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-08-03</th><tr data-revised-hash='cd3d1237b5e4b86df24c571d21be422cc6ef1bac'><td><a href='/date/2018-08-03T15:32:22/css-cascade-3/'>15:32:22 PDT</a></td><td>2018-08-03 15:31:51 PDT</td><td><span>fantasai</span></td><td>[css-cascade-3] Link DoC</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cd3d1237b5e4b86df24c571d21be422cc6ef1bac/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-08-03T15:32:22/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='40211fe6476d13ca2cd4f7ca9a7c038bfabc2c4b'><td><a href='/date/2018-08-03T15:30:03/css-cascade-3/'>15:30:03 PDT</a></td><td>2018-08-03 15:05:05 PDT</td><td><span>fantasai</span></td><td>[css-cascade-4] Copy over example fix from #664</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/40211fe6476d13ca2cd4f7ca9a7c038bfabc2c4b/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-08-03T15:30:03/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='bf69567b84140a9db1b89f974ebd3c0b2d38099d'><td><a href='/date/2018-08-03T15:29:15/css-cascade-3/'>15:29:15 PDT</a></td><td>2018-08-03 15:28:56 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Fill in some real security issues.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bf69567b84140a9db1b89f974ebd3c0b2d38099d/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-08-03T15:29:15/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ec06ede33bdeb1f2963d3fe9dd0d4c64107f6d6e'><td><a href='/date/2018-08-03T14:25:14/css-cascade-3/'>14:25:14 PDT</a></td><td>2018-08-03 14:24:48 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-3] Filled in rest of Changes list, based on reviewing the diff from last TR publication.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ec06ede33bdeb1f2963d3fe9dd0d4c64107f6d6e/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-08-03T14:25:14/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='35bc826c86a5c79f5b7afb590ef79b5b176347bd'><td><a href='/date/2018-08-03T13:49:33/css-cascade-3/'>13:49:33 PDT</a></td><td>2018-08-03 13:49:15 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Clarify that custom properties are not reset by 'all'. #2518</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/35bc826c86a5c79f5b7afb590ef79b5b176347bd/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-08-03T13:49:33/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-06-21</th><tr data-revised-hash='1f0f0d5f6e655b61d3f30fc5901bf9a9c626c345'><td><a href='/date/2018-06-21T12:46:21/css-cascade-3/'>12:46:21 PDT</a></td><td>2018-06-21 12:46:01 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Remove mention of the Override origin, per CSSWG resolution. Fixes #1385.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1f0f0d5f6e655b61d3f30fc5901bf9a9c626c345/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-21T12:46:21/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='4e617a20ac4381c83aed5c5b7cb26e47079ce288'><td><a href='/date/2018-06-21T12:36:31/css-cascade-3/'>12:36:31 PDT</a></td><td>2018-06-21 12:36:07 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Finish half-finished sentence. Fixes #1890.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e617a20ac4381c83aed5c5b7cb26e47079ce288/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-21T12:36:31/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ea724a78f103e26cb7a4a2c9f6f90e9e83c7752e'><td><a href='/date/2018-06-21T12:27:34/css-cascade-3/'>12:27:34 PDT</a></td><td>2018-06-21 12:25:54 PDT</td><td><span>fantasai</span></td><td>Switch css21 cross-references to css2</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ea724a78f103e26cb7a4a2c9f6f90e9e83c7752e/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-21T12:27:34/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-01-24</th><tr data-revised-hash='e6ced72515f01a2a22d0f8f561f0e1f1696fff72'><td><a href='/date/2018-01-24T20:02:02/css-cascade-3/'>20:02:02 PST</a></td><td>2017-12-20 05:42:22 PST</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td>Use autolink for HTML elements</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e6ced72515f01a2a22d0f8f561f0e1f1696fff72/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-01-24T20:02:02/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-12-08</th><tr data-revised-hash='ad63eecaa75005f613d1efdb77e6418d7886abe5'><td><a href='/date/2017-12-08T14:22:19/css-cascade-3/'>14:22:19 PST</a></td><td>2017-12-08 14:22:04 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Add issue for privacy/security section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ad63eecaa75005f613d1efdb77e6418d7886abe5/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2017-12-08T14:22:19/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-11-09</th><tr data-revised-hash='22c9edc2d68b3ed8cfe65a52958ece5d2403284f'><td><a href='/date/2017-11-09T16:14:17/css-cascade-3/'>16:14:17 PST</a></td><td>2017-11-09 16:12:58 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Add w3cid metadata for all editors. I got the uids from the "Edit status" links in https://www.w3.org/2000/09/dbwg/details?group=32061 and made the actual changes with a python script.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/22c9edc2d68b3ed8cfe65a52958ece5d2403284f/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-11-09T16:14:17/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-10-25</th><tr data-revised-hash='bf028765d029821a61d0d78df39c351c5850e60a'><td><a href='/date/2017-10-25T16:52:19/css-cascade-3/'>16:52:19 PDT</a></td><td>2017-10-25 16:05:56 PDT</td><td><span title='Tantek Celik'>tantek_celik</span></td><td>Use Title: meta instead of explicit <h1></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bf028765d029821a61d0d78df39c351c5850e60a/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-10-25T16:52:19/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-07-05</th><tr data-revised-hash='37f2278eed986f8edd879e6c40c323a6431f7f8a'><td><a href='/date/2017-07-05T12:55:24/css-cascade-3/'>12:55:24 PDT</a></td><td>2017-07-05 12:55:01 PDT</td><td><span>fantasai</span></td><td>[css-cascade] ordered lists should use <ol>!</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/37f2278eed986f8edd879e6c40c323a6431f7f8a/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-07-05T12:55:24/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-03-30</th><tr data-revised-hash='e90b70b6ca2768763516537056a41df63a6672d9'><td><a href='/date/2017-03-30T14:51:29/css-cascade-3/'>14:51:29 PDT</a></td><td>2017-03-30 14:48:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-3] Make example clearer. Fixes #664.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e90b70b6ca2768763516537056a41df63a6672d9/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-03-30T14:51:29/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='2e5f1237726f358dc0b9292bb2cf393d82a8a3d8'><td><a href='/date/2017-03-30T14:45:20/css-cascade-3/'>14:45:20 PDT</a></td><td>2017-03-30 14:45:05 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-3] Remove scoped styles. Fixes #637.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2e5f1237726f358dc0b9292bb2cf393d82a8a3d8/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-03-30T14:45:20/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-03-16</th><tr data-revised-hash='68e143b4a1605d78daeb6ab46b7200f1ee9e6446'><td><a href='/date/2017-03-16T10:39:10/css-cascade-3/'>10:39:10 PDT</a></td><td>2017-03-16 10:36:15 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Add the Cascade 4 dfn tags for origin/style sheet, and do some light rewrapping.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/68e143b4a1605d78daeb6ab46b7200f1ee9e6446/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-03-16T10:39:10/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2017-01-24</th><tr data-revised-hash='9a526e73de8781d3394f4fc63f08322301f625ad'><td><a href='/date/2017-01-24T11:01:38/css-cascade-3/'>11:01:38 PST</a></td><td>2017-01-24 11:01:10 PST</td><td><span>fantasai</span></td><td>Add w3cid</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9a526e73de8781d3394f4fc63f08322301f625ad/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2017-01-24T11:01:38/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-10-21</th><tr data-revised-hash='ac2f5105ba14d34be319f4da55fbcd8285e6619b'><td><a href='/date/2016-10-21T22:39:40/css-cascade-3/'>22:39:40 PDT</a></td><td>2016-10-21 21:43:36 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Add level additions section. Fixes #617</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ac2f5105ba14d34be319f4da55fbcd8285e6619b/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-10-21T22:39:40/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-08-23</th><tr data-revised-hash='fdb578dd40c5ed9ab1da4031ecb7a2ab28ce3f3c'><td><a href='/date/2016-08-23T11:48:16/css-cascade-3/'>11:48:16 PDT</a></td><td>2016-08-23 11:46:35 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade-3] Sync dfn text with Cascade 4.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fdb578dd40c5ed9ab1da4031ecb7a2ab28ce3f3c/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-08-23T11:48:16/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-06-23</th><tr data-revised-hash='7c815b09946add579cc935b4d1b3e34e0930bc2c'><td><a href='/date/2016-06-23T12:06:48/css-cascade-3/'>12:06:48 PDT</a></td><td>2016-06-23 12:05:22 PDT</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td>[css-cascade-3] Bikeshed improvements related to property values (#142) (#225)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7c815b09946add579cc935b4d1b3e34e0930bc2c/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-06-23T12:06:48/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-06-10</th><tr data-revised-hash='b362c79f009153fb5eeebd680aa19449d0eb4c1e'><td><a href='/date/2016-06-10T14:34:28/css-cascade-3/'>14:34:28 PDT</a></td><td>2016-06-10 14:33:49 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] Clarify @import to not mess with relative-ordering features, and let features explicitly not work for imported sheets.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b362c79f009153fb5eeebd680aa19449d0eb4c1e/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-06-10T14:34:28/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-06-08</th><tr data-revised-hash='60de3a7e71e077e4cb7cd0e0c395daae68006941'><td><a href='/date/2016-06-08T12:19:20/css-cascade-3/'>12:19:20 PDT</a></td><td>2016-06-08 07:43:13 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] typo. Fixes #154</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/60de3a7e71e077e4cb7cd0e0c395daae68006941/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-06-08T12:19:20/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-05-21</th><tr data-revised-hash='fd038cffc31a42343c85dc6106187d0693f473aa'><td><a href='/date/2016-05-21T13:01:12/css-cascade-3/'>13:01:12 PDT</a></td><td>2016-05-21 13:01:02 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Update "Previous version" links, and remove Date/Status overrides, for CSS publications since 2015-12-01.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fd038cffc31a42343c85dc6106187d0693f473aa/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-05-21T13:01:12/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-05-18</th><tr data-revised-hash='1a242d4f05f2f1d59ecdf5f4eeb55dce98c46eb8'><td><a href='/date/2016-05-18T13:45:00/css-cascade-3/'>13:45:00 PDT</a></td><td>2016-05-18 13:44:39 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Update WHATWG links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1a242d4f05f2f1d59ecdf5f4eeb55dce98c46eb8/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-05-18T13:45:00/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='afcdcece115da4f453e372bd027305973c1e5eca'><td><a href='/date/2016-05-18T13:27:03/css-cascade-3/'>13:27:03 PDT</a></td><td>2016-05-18 13:26:37 PDT</td><td><span>fantasai</span></td><td>Prep for publication</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/afcdcece115da4f453e372bd027305973c1e5eca/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-05-18T13:27:03/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-05-16</th><tr data-revised-hash='3d9ca93cb836f43652f5650e8bc41bba77ce26a9'><td><a href='/date/2016-05-16T12:02:21/css-cascade-3/'>12:02:21 PDT</a></td><td>2016-05-16 12:02:02 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Export reset-only subproperty</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3d9ca93cb836f43652f5650e8bc41bba77ce26a9/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-05-16T12:02:21/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-04-20</th><tr data-revised-hash='abb68201b9bef45ddc7d78e8f31515474622a748'><td><a href='/date/2016-04-20T12:03:47/css-cascade-3/'>12:03:47 PDT</a></td><td>2016-04-20 12:03:05 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-cascade] markup fix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/abb68201b9bef45ddc7d78e8f31515474622a748/css-cascade-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2016-04-20T12:03:47/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-02-01</th><tr data-revised-hash='255258410d1b4bec423289e86bf99ca76de5cbbc'><td><a href='/date/2016-02-01T00:19:57/css-cascade-3/'>00:19:57 PST</a></td><td>2016-02-01 00:19:13 PST</td><td><span title='Peter Linss'>plinss</span></td><td>change w3.org/TR/ urls to https</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/255258410d1b4bec423289e86bf99ca76de5cbbc/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-02-01T00:19:57/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2016-01-31</th><tr data-revised-hash='5be73fbc8592f12f08c86b263da6bd608c22a5b3'><td><a href='/date/2016-01-31T23:43:12/css-cascade-3/'>23:43:12 PST</a></td><td>2016-01-31 23:42:31 PST</td><td><span title='Peter Linss'>plinss</span></td><td>change //dev.w3.org/csswg/ urls to //drafts.csswg.org/</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5be73fbc8592f12f08c86b263da6bd608c22a5b3/css-cascade-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-01-31T23:43:12/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2015-10-26</th><tr data-revised-hash='27d9df21dcba715feb0f9801055002a2b4dc7b2f'><td><a href='/date/2015-10-26T05:06:05/css-cascade-3/'>05:06:05 PDT</a></td><td>2015-10-26 05:05:24 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Update Previous Version links based on current drafts on TR.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/27d9df21dcba715feb0f9801055002a2b4dc7b2f/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2015-10-26T05:06:05/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2015-09-08</th><tr data-revised-hash='088782b5de20aaec2107fe4e822f8cf9b026ae1b'><td><a href='/date/2015-09-08T05:23:00/css-cascade-3/'>05:23:00 PDT</a></td><td>2015-09-08 05:22:42 PDT</td><td><span>fantasai</span></td><td>Make bylines more consistent.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/088782b5de20aaec2107fe4e822f8cf9b026ae1b/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2015-09-08T05:23:00/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2015-05-29</th><tr data-revised-hash='0f4bf02e8b705d19b9215c7c91cc69eb7be79e38'><td><a href='/date/2015-05-29T23:49:29/css-cascade-3/'>23:49:29 PDT</a></td><td>2015-05-29 23:46:19 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>Add 'Work Status' metadata to all Bikeshed source files. Some files also accidentally got whitespace fixes, whoops.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0f4bf02e8b705d19b9215c7c91cc69eb7be79e38/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2015-05-29T23:49:29/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2015-03-20</th><tr data-revised-hash='ca52341cd4dc17e81bbbacb5eae8948c1b871331'><td><a href='/date/2015-03-20T01:22:14/css-cascade-3/'>01:22:14 PDT</a></td><td>2015-03-20 01:22:09 PDT</td><td><span>fantasai</span></td><td>[css-cascade-3] Sync editorial changes for @import.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ca52341cd4dc17e81bbbacb5eae8948c1b871331/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2015-03-20T01:22:14/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2015-03-19</th><tr data-revised-hash='f48a6eee604c6cdda6818ddb610f47ad59434a52'><td><a href='/date/2015-03-19T23:45:17/css-cascade-3/'>23:45:17 PDT</a></td><td>2015-03-19 23:42:56 PDT</td><td><span>fantasai</span></td><td>[css-cascade-3] Wording tweak.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f48a6eee604c6cdda6818ddb610f47ad59434a52/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2015-03-19T23:45:17/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='47b8e8c7bb10447bd99a795b3d59df3085268a7f'><td><a href='/date/2015-03-19T22:46:18/css-cascade-3/'>22:46:18 PDT</a></td><td>2015-03-19 22:46:11 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Fix copy/paste error.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/47b8e8c7bb10447bd99a795b3d59df3085268a7f/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2015-03-19T22:46:18/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='8e97f405c7bc18fe8a834da85fe2927cfc31a195'><td><a href='/date/2015-03-19T22:32:48/css-cascade-3/'>22:32:48 PDT</a></td><td>2015-03-19 22:32:41 PDT</td><td><span>fantasai</span></td><td>[css-cascade] Try this again... restore issues lists, too.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8e97f405c7bc18fe8a834da85fe2927cfc31a195/css-cascade-3/Overview.bs'></a><a class='bikeshed success' href='/date/2015-03-19T22:32:48/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-3/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-cascade-3/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 1</span><form accept-charset='utf-8' action='/history/page/2/css-cascade-3/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/css-cascade-3/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>