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='5Y+12IaZSjhSKPoqnwMtQqkSV2bcQYKq+q4LXwcK9OU=' 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='5Y+12IaZSjhSKPoqnwMtQqkSV2bcQYKq+q4LXwcK9OU=' 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='5Y+12IaZSjhSKPoqnwMtQqkSV2bcQYKq+q4LXwcK9OU=' type='text/javascript'><!-- // --></script><script nonce='5Y+12IaZSjhSKPoqnwMtQqkSV2bcQYKq+q4LXwcK9OU=' 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-sizing-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-sizing-3/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-sizing-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 2</span><a class='icon button next' href='/history/page/2/css-sizing-3/'></a><a class='icon button last' href='/history/page/2/css-sizing-3/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-sizing-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-07-25</th><tr data-revised-hash='88ebbae15336bc80c43f874a893650e14f4d96e2'><td><a href='/date/2024-07-25T12:12:53/css-sizing-3/'>12:12:53 PDT</a></td><td>2024-07-25 12:12:32 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-sizing] Add calc-size to productions for width/height and min/max-width/height. (#10628) * Add calc-size to productions for width/height and min/max-width/height. This adds calc-size() support to the grammar productions for width/height and min/max-width/height, which also implies adding them to the productions for block/inline-size and min/max-block/inline-size and to flex-basis. This is part of #626. * Improve linking and reorganize a little bit.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/88ebbae15336bc80c43f874a893650e14f4d96e2/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-07-25T12:12:53/bikeshed/css-sizing-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='bb3b09ffadc7f1be92b601ccefe4dd8ea3292df0'><td><a href='/date/2024-07-25T08:56:31/css-sizing-3/'>08:56:31 PDT</a></td><td>2024-07-25 08:55:58 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-sizing-3] Fix tabs versus spaces bikeshed warnings.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bb3b09ffadc7f1be92b601ccefe4dd8ea3292df0/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-07-25T08:56:31/bikeshed/css-sizing-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'>2024-02-29</th><tr data-revised-hash='ad9fe03c3892357a9dba5b99417234db3809ee3e'><td><a href='/date/2024-02-29T14:31:40/css-sizing-3/'>14:31:40 PST</a></td><td>2024-02-29 14:31:14 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-values-4][css-sizing-3] Define &#039;contains a percentage&#039;, ref it in Sizing. #10017</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ad9fe03c3892357a9dba5b99417234db3809ee3e/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-29T14:31:40/bikeshed/css-sizing-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-sizing-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-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-sizing-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-sizing-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-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-sizing-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-sizing-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-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-sizing-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-05-07</th><tr data-revised-hash='9028f951907692ce5842a99444638f58e6edf8e0'><td><a href='/date/2023-05-07T21:39:40/css-sizing-3/'>21:39:40 PDT</a></td><td>2023-03-14 13:03:37 PDT</td><td><span>fantasai</span></td><td>[css-display] Rename box tree?s ?text run? to ?text sequence?. #7768</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9028f951907692ce5842a99444638f58e6edf8e0/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-05-07T21:39:40/bikeshed/css-sizing-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-03-03</th><tr data-revised-hash='6bb3d659ee12aa0f434385900dc1e8bc1d83eb9e'><td><a href='/date/2023-03-03T14:55:58/css-sizing-3/'>14:55:58 PST</a></td><td>2023-03-03 12:37:39 PST</td><td><span>fantasai</span></td><td>[css-logical-1] Add &quot;Logical property group&quot; propdef table field See issue #2822, PR #7950</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6bb3d659ee12aa0f434385900dc1e8bc1d83eb9e/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-03-03T14:55:58/bikeshed/css-sizing-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-02-27</th><tr data-revised-hash='6351855981180d1d925dc01c2f5761eb4aa4aa1d'><td><a href='/date/2023-02-27T10:54:39/css-sizing-3/'>10:54:39 PST</a></td><td>2023-02-27 10:54:15 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Define min|max-width|height with animation type (#8420)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6351855981180d1d925dc01c2f5761eb4aa4aa1d/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-02-27T10:54:39/bikeshed/css-sizing-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-31</th><tr data-revised-hash='e5b5b19ce336936608cff49928622a4bb3b229ea'><td><a href='/date/2022-10-31T13:14:06/css-sizing-3/'>13:14:06 PDT</a></td><td>2022-09-05 21:51:50 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-sizing-3] Add note to clarify indefiniteness of intrinsic size keywords See https://github.com/w3c/csswg-drafts/issues/7206#issuecomment-1218336931</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e5b5b19ce336936608cff49928622a4bb3b229ea/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-31T13:14:06/bikeshed/css-sizing-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-06-29</th><tr data-revised-hash='594b1f8770480473acf2302c77d93fc26831105d'><td><a href='/date/2022-06-29T01:09:58/css-sizing-3/'>01:09:58 PDT</a></td><td>2022-06-22 23:15:55 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>Apply range definition notation to property values</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/594b1f8770480473acf2302c77d93fc26831105d/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-29T01:09:58/bikeshed/css-sizing-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-09</th><tr data-revised-hash='6639f9301a139a9bb35fd40abacfbc0b6e173b0d'><td><a href='/date/2022-03-09T11:32:01/css-sizing-3/'>11:32:01 PST</a></td><td>2022-03-09 11:31:30 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Clarify that we are referring to the preferred size.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6639f9301a139a9bb35fd40abacfbc0b6e173b0d/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-09T11:32:01/bikeshed/css-sizing-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-01-31</th><tr data-revised-hash='8e07ec8e936ec0cf031d4a139967cd2be933f94d'><td><a href='/date/2022-01-31T15:01:06/css-sizing-3/'>15:01:06 PST</a></td><td>2022-01-31 15:00:36 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Genericize the properties slightly, so flex-basis properly falls under it. #6822</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8e07ec8e936ec0cf031d4a139967cd2be933f94d/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-01-31T15:01:06/bikeshed/css-sizing-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-16</th><tr data-revised-hash='0805874120834e7a50ee06d2fd5ee8f22a290a68'><td><a href='/date/2021-12-16T16:58:25/css-sizing-3/'>16:58:25 PST</a></td><td>2021-12-16 16:57:35 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Update Changes list</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0805874120834e7a50ee06d2fd5ee8f22a290a68/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-16T16:58:25/bikeshed/css-sizing-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-09-07</th><tr data-revised-hash='180627d0dde108c3ac0017bcde842fa6c6a59aa0'><td><a href='/date/2021-09-07T17:44:03/css-sizing-3/'>17:44:03 PDT</a></td><td>2021-09-07 16:47:08 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] #6341 Per WG resolution, fixed lengths transfer across the aspect ratio when dealing with cyclic %s on replaced elements.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/180627d0dde108c3ac0017bcde842fa6c6a59aa0/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-09-07T17:44:03/bikeshed/css-sizing-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-07-15</th><tr data-revised-hash='7d19ff9e6ecde8eb300a2f9c802d55715b6f15b1'><td><a href='/date/2021-07-15T14:31:35/css-sizing-3/'>14:31:35 PDT</a></td><td>2021-07-15 14:31:04 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Improve definition of min-content size. #6418</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7d19ff9e6ecde8eb300a2f9c802d55715b6f15b1/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-07-15T14:31:35/bikeshed/css-sizing-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-06-03</th><tr data-revised-hash='3697543c07407134bccbc3e9764fb8e5f09acaa8'><td><a href='/date/2021-06-03T16:03:16/css-sizing-3/'>16:03:16 PDT</a></td><td>2021-06-03 16:02:54 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3][editorial] Add width/height to the SVG images.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3697543c07407134bccbc3e9764fb8e5f09acaa8/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-06-03T16:03:16/bikeshed/css-sizing-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='4c64918035bd475ef04d57b9dc5117426e8c3519'><td><a href='/date/2021-06-03T16:01:33/css-sizing-3/'>16:01:33 PDT</a></td><td>2021-06-03 16:00:57 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Add &lt;marquee&gt; to the list of compressible elements, per web-compat (and just general reasoning). #6342</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4c64918035bd475ef04d57b9dc5117426e8c3519/css-sizing-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-06-03T16:01:33/bikeshed/css-sizing-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='463fa70918d1d96eb40943db5ed39f87850be1ae'><td><a href='/date/2021-06-03T15:58:35/css-sizing-3/'>15:58:35 PDT</a></td><td>2021-06-03 15:58:06 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Link to issue tracking compressible elements &amp; max-width/height (#6348).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/463fa70918d1d96eb40943db5ed39f87850be1ae/css-sizing-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-06-03T15:58:35/bikeshed/css-sizing-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-sizing-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 &quot;Revert &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot;&quot; This reverts commit 9d14c2393cfeca05c799d43444fe9c860074e80b. The commit that it was reverting was actually fine; it was a merge, but looked like it was bad because it had a large diff against the first parent but it had no diff against the second (which was the relevant one in a &quot;linear history&quot; of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/css-sizing-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T14:26:46/bikeshed/css-sizing-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-sizing-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 &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot; This reverts commit 442ca50fbfe14f5e163336a54844ba447d2bafa7, reversing changes made to d0337ce2a834e083954a3b090fd69ea918a0302a.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70d026dcb8e01b8e3b0898968180c45a2d0da901/css-sizing-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T13:52:15/bikeshed/css-sizing-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-17</th><tr data-revised-hash='8bc79bffbe8cbb937a7e4f9d616151805c151023'><td><a href='/date/2021-03-17T14:48:48/css-sizing-3/'>14:48:48 PDT</a></td><td>2021-03-17 14:48:17 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Update Changes list.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8bc79bffbe8cbb937a7e4f9d616151805c151023/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-17T14:48:48/bikeshed/css-sizing-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-11</th><tr data-revised-hash='517411aded832aa1f240903d32986df45957ee05'><td><a href='/date/2021-03-11T12:42:36/css-sizing-3/'>12:42:36 PST</a></td><td>2021-03-11 12:42:01 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Fix linking error.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/517411aded832aa1f240903d32986df45957ee05/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-11T12:42:36/bikeshed/css-sizing-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='138ba70ab1ba57993bb6c0d58e42136ec36a0d6b'><td><a href='/date/2021-03-11T12:39:55/css-sizing-3/'>12:39:55 PST</a></td><td>2021-03-11 12:39:30 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Surface comment about new behavior in a note.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/138ba70ab1ba57993bb6c0d58e42136ec36a0d6b/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-03-11T12:39:55/bikeshed/css-sizing-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='e069a6a2667c8434d3f60483350c187faff2a907'><td><a href='/date/2021-03-11T12:36:11/css-sizing-3/'>12:36:11 PST</a></td><td>2021-03-11 12:35:47 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Remove duplicated Note in Note. https://github.com/w3c/csswg-drafts/issues/6072#issuecomment-795604963</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e069a6a2667c8434d3f60483350c187faff2a907/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-11T12:36:11/bikeshed/css-sizing-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-05</th><tr data-revised-hash='84ca42d36914996f391657348336cf1447cab4e9'><td><a href='/date/2021-03-05T14:34:41/css-sizing-3/'>14:34:41 PST</a></td><td>2021-03-05 14:34:19 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Trivial fixes to definitions.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/84ca42d36914996f391657348336cf1447cab4e9/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-05T14:34:41/bikeshed/css-sizing-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='a65792b2caf3689d56e4e578c9e66f9a29e81c1f'><td><a href='/date/2021-03-05T13:29:34/css-sizing-3/'>13:29:34 PST</a></td><td>2021-03-05 13:28:49 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Add inner-size and outer-size images. #1938</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a65792b2caf3689d56e4e578c9e66f9a29e81c1f/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-05T13:29:34/bikeshed/css-sizing-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-03</th><tr data-revised-hash='ce136dfa7cc1914e9572db18bf82bca93e644d5c'><td><a href='/date/2021-03-03T14:26:07/css-sizing-3/'>14:26:07 PST</a></td><td>2021-03-03 14:25:45 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Reference WM in terminology section. #5725</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ce136dfa7cc1914e9572db18bf82bca93e644d5c/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-03T14:26:07/bikeshed/css-sizing-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='622f344752d73dd44e01337712912b9a732ea437'><td><a href='/date/2021-03-03T14:22:05/css-sizing-3/'>14:22:05 PST</a></td><td>2021-03-03 14:21:42 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Define the minimum size for replaced element as well. #6073</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/622f344752d73dd44e01337712912b9a732ea437/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-03T14:22:05/bikeshed/css-sizing-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='99b6e0101d14d49fd81cca9174d9c191a1e9c8c5'><td><a href='/date/2021-03-03T14:07:56/css-sizing-3/'>14:07:56 PST</a></td><td>2021-03-03 14:07:08 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Fix the definitions of replaced max-content sizes. #6072</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/99b6e0101d14d49fd81cca9174d9c191a1e9c8c5/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-03T14:07:56/bikeshed/css-sizing-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-02-21</th><tr data-revised-hash='d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38'><td><a href='/date/2021-02-21T23:27:15/css-sizing-3/'>23:27:15 PST</a></td><td>2021-02-21 23:26:51 PST</td><td><span>fantasai</span></td><td>fix: typos across specs (#5992)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-02-21T23:27:15/bikeshed/css-sizing-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='55f5c71159b8d19fa2d87e7a6f8ca1e0d47ef899'><td><a href='/date/2020-12-21T13:03:46/css-sizing-3/'>13:03:46 PST</a></td><td>2020-12-21 13:03:03 PST</td><td><span>fantasai</span></td><td>Publication prep fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/55f5c71159b8d19fa2d87e7a6f8ca1e0d47ef899/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-21T13:03:46/bikeshed/css-sizing-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-15</th><tr data-revised-hash='933a7cc49e00086da19251eb4c575118904c1bb3'><td><a href='/date/2020-12-15T15:01:56/css-sizing-3/'>15:01:56 PST</a></td><td>2020-12-15 15:01:24 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[various][editorial] Switch relevant uses of &#039;intrinsic width/height/aspect ratio/size&#039; to &#039;natural&#039;, per #4961.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/933a7cc49e00086da19251eb4c575118904c1bb3/css-sizing-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-12-15T15:01:56/bikeshed/css-sizing-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='356e564b92616a25f6d45417a007cb1c5501f319'><td><a href='/date/2020-12-15T12:05:18/css-sizing-3/'>12:05:18 PST</a></td><td>2020-12-15 12:04:53 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Export &#039;cyclic percentage size&#039;.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/356e564b92616a25f6d45417a007cb1c5501f319/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-15T12:05:18/bikeshed/css-sizing-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-07</th><tr data-revised-hash='8f72b9153ba6c157bf27610b37385429921667e8'><td><a href='/date/2020-12-07T10:53:14/css-sizing-3/'>10:53:14 PST</a></td><td>2020-12-07 10:52:44 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Drop stray reference to stretch keyword, mention origins of box-sizing and min-*:auto</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8f72b9153ba6c157bf27610b37385429921667e8/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-07T10:53:14/bikeshed/css-sizing-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-11-11</th><tr data-revised-hash='10381d804132dd53e9f0b688a2a6c0170032ea52'><td><a href='/date/2020-11-11T11:19:48/css-sizing-3/'>11:19:48 PST</a></td><td>2020-11-11 11:18:52 PST</td><td><span>fantasai</span></td><td>[css-sizing-4] Remove note about web-compat of % max-width compression, since that has now been shipping awhile.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/10381d804132dd53e9f0b688a2a6c0170032ea52/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-11-11T11:19:48/bikeshed/css-sizing-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-28</th><tr data-revised-hash='7ddd9fbecceb912960838e77b08fe8cb8f92c166'><td><a href='/date/2020-10-28T12:51:10/css-sizing-3/'>12:51:10 PDT</a></td><td>2020-10-28 12:26:00 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Cyclic percentage compression only affects min-content contribution, not min-content size per https://github.com/w3c/csswg-drafts/issues/765 #5665</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7ddd9fbecceb912960838e77b08fe8cb8f92c166/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-28T12:51:10/bikeshed/css-sizing-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-23</th><tr data-revised-hash='aefdef4e2fd0531ecf0adf47583f71644f106396'><td><a href='/date/2020-10-23T16:35:53/css-sizing-3/'>16:35:53 PDT</a></td><td>2020-10-23 16:35:02 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Improve priv-sec section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aefdef4e2fd0531ecf0adf47583f71644f106396/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-23T16:35:53/bikeshed/css-sizing-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='5e54303b51fecff617f703a33a2b1fb2444bff83'><td><a href='/date/2020-10-23T13:45:21/css-sizing-3/'>13:45:21 PDT</a></td><td>2020-10-23 13:44:45 PDT</td><td><span>fantasai</span></td><td>[css-sizing-4] Fix links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5e54303b51fecff617f703a33a2b1fb2444bff83/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-23T13:45:21/bikeshed/css-sizing-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='41f7b2f5db1bf74475a37f1132e52c589beb6b14'><td><a href='/date/2020-10-23T12:21:15/css-sizing-3/'>12:21:15 PDT</a></td><td>2020-10-23 12:20:50 PDT</td><td><span>fantasai</span></td><td>[css-sizing-4] Adjust cross-references.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/41f7b2f5db1bf74475a37f1132e52c589beb6b14/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-23T12:21:15/bikeshed/css-sizing-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-20</th><tr data-revised-hash='480f9774a7b6ac188771be1c874cb3599db2a81f'><td><a href='/date/2020-10-20T16:55:03/css-sizing-3/'>16:55:03 PDT</a></td><td>2020-10-20 16:53:09 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Adjust definition of cyclic percentage per #3010</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/480f9774a7b6ac188771be1c874cb3599db2a81f/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-20T16:55:03/bikeshed/css-sizing-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-13</th><tr data-revised-hash='d73ee520297eddc872890f06edd2b7c84dc10587'><td><a href='/date/2020-10-13T14:37:33/css-sizing-3/'>14:37:33 PDT</a></td><td>2020-10-13 14:28:51 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Use preferred aspect ratio in place of intrinsic aspect ratio as appropriate. #4962</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d73ee520297eddc872890f06edd2b7c84dc10587/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T14:37:33/bikeshed/css-sizing-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='2e9417214e783928e5866807ce5b2f5434550125'><td><a href='/date/2020-10-13T13:20:39/css-sizing-3/'>13:20:39 PDT</a></td><td>2020-10-13 13:20:14 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Wording tweak #4962</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2e9417214e783928e5866807ce5b2f5434550125/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T13:20:39/bikeshed/css-sizing-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='af8aafaa90d676a97e2237c5e6541e80759025d1'><td><a href='/date/2020-10-13T13:13:11/css-sizing-3/'>13:13:11 PDT</a></td><td>2020-10-13 13:12:52 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Dfn &#039;preferred aspect ratio&#039; but not &#039;aspect ratio&#039;. #4962</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/af8aafaa90d676a97e2237c5e6541e80759025d1/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T13:13:11/bikeshed/css-sizing-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='0fc23e4497dee4f2b2f04407a9bdfde097191b47'><td><a href='/date/2020-10-13T13:10:33/css-sizing-3/'>13:10:33 PDT</a></td><td>2020-10-13 13:10:05 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Define term preferred aspect ratio. #4962</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0fc23e4497dee4f2b2f04407a9bdfde097191b47/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T13:10:33/bikeshed/css-sizing-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-08</th><tr data-revised-hash='454ae21271fa5323f0bbe5e6face829316c8dd72'><td><a href='/date/2020-10-08T13:25:18/css-sizing-3/'>13:25:18 PDT</a></td><td>2020-10-08 13:22:41 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3][editorial] Add some more dfn terms and links.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/454ae21271fa5323f0bbe5e6face829316c8dd72/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-08T13:25:18/bikeshed/css-sizing-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='0adb79aa1bc5e3e9fd86522a58db5c3866c0d94a'><td><a href='/date/2020-09-30T12:01:51/css-sizing-3/'>12:01:51 PDT</a></td><td>2020-09-30 12:01:28 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Adjust heading level, improve cross-reference.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0adb79aa1bc5e3e9fd86522a58db5c3866c0d94a/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-30T12:01:51/bikeshed/css-sizing-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='8905f034a661279cb9b43aa7f8c84080ed4aac22'><td><a href='/date/2020-09-30T11:53:19/css-sizing-3/'>11:53:19 PDT</a></td><td>2020-09-30 11:52:55 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Move section, add subheading, improve cross-references.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8905f034a661279cb9b43aa7f8c84080ed4aac22/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-30T11:53:19/bikeshed/css-sizing-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-18</th><tr data-revised-hash='6184bac8cb021eb858f4ee36559aad2fc9790aa3'><td><a href='/date/2020-09-18T15:42:57/css-sizing-3/'>15:42:57 PDT</a></td><td>2020-09-18 14:48:54 PDT</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td>Removed duplicate &quot;keywords&quot; from Value Definitions section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6184bac8cb021eb858f4ee36559aad2fc9790aa3/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-18T15:42:57/bikeshed/css-sizing-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-11</th><tr data-revised-hash='60caee591ba1637a5f4cc8afa0713f32ac5ecabb'><td><a href='/date/2020-08-11T15:43:28/css-sizing-3/'>15:43:28 PDT</a></td><td>2020-08-11 15:43:08 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3][editorial] tpyo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/60caee591ba1637a5f4cc8afa0713f32ac5ecabb/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-11T15:43:28/bikeshed/css-sizing-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='c33d6bdee65b290f941192ccf6518a1916af2616'><td><a href='/date/2020-08-11T15:08:45/css-sizing-3/'>15:08:45 PDT</a></td><td>2020-08-11 15:08:23 PDT</td><td><span>fantasai</span></td><td>[css-sizing-4] Update Changes list.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c33d6bdee65b290f941192ccf6518a1916af2616/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-11T15:08:45/bikeshed/css-sizing-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='502a4b9ede402146a427fd7d31b78648bce3d79d'><td><a href='/date/2020-08-11T14:45:46/css-sizing-3/'>14:45:46 PDT</a></td><td>2020-08-11 14:45:19 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Use clamp() notation to define fit-content. #4006</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/502a4b9ede402146a427fd7d31b78648bce3d79d/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-11T14:45:46/bikeshed/css-sizing-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='775fe5e54d25ceb0789d72e831746a4bfcf7de23'><td><a href='/date/2020-08-11T14:38:21/css-sizing-3/'>14:38:21 PDT</a></td><td>2020-08-11 14:37:06 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Use &lt;&lt;length&gt;&gt; rather than definite to avoid complexity around percentages etc. #4217</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/775fe5e54d25ceb0789d72e831746a4bfcf7de23/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-11T14:38:21/bikeshed/css-sizing-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='462ba1da0704f18d2c73cffc7f7e1b09d111bb7d'><td><a href='/date/2020-08-11T14:16:20/css-sizing-3/'>14:16:20 PDT</a></td><td>2020-08-11 14:15:57 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Clarify that available space as a constraint imposes that constraint on boxes. #4219</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/462ba1da0704f18d2c73cffc7f7e1b09d111bb7d/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-11T14:16:20/bikeshed/css-sizing-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='191c5fa4c67a82e0d58215bd2ed933010d31dba2'><td><a href='/date/2020-08-04T15:05:05/css-sizing-3/'>15:05:05 PDT</a></td><td>2020-08-04 15:04:42 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Define automatic block/inline size as terms.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/191c5fa4c67a82e0d58215bd2ed933010d31dba2/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-04T15:05:05/bikeshed/css-sizing-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-07-20</th><tr data-revised-hash='10681cd9773eb20dcb2c71f0b4b92c1d310c8fa0'><td><a href='/date/2020-07-20T15:51:41/css-sizing-3/'>15:51:41 PDT</a></td><td>2020-07-20 15:51:18 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Simplify the behavior around fit-content(%) to just defer to normal % behavior, as suggested by Oriol in #3731.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/10681cd9773eb20dcb2c71f0b4b92c1d310c8fa0/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-20T15:51:41/bikeshed/css-sizing-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='e4cc89e3dc7596bef920d9b2352cbc6b499c65ca'><td><a href='/date/2020-07-20T12:11:04/css-sizing-3/'>12:11:04 PDT</a></td><td>2020-07-20 12:10:38 PDT</td><td><span>fantasai</span></td><td>[css-sizing-4] Was supposed to be non-auto values only. #1722</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e4cc89e3dc7596bef920d9b2352cbc6b499c65ca/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-20T12:11:04/bikeshed/css-sizing-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-06-05</th><tr data-revised-hash='e191f4e66db0821a1d6079550a8d3417082060e4'><td><a href='/date/2020-06-05T16:13:31/css-sizing-3/'>16:13:31 PDT</a></td><td>2020-06-05 16:13:11 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Don&#039;t override CSS2 sizing rules. Only supplement them. Part II</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e191f4e66db0821a1d6079550a8d3417082060e4/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-06-05T16:13:31/bikeshed/css-sizing-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='836e15d501790cc35506c82cd697ace9af8e6203'><td><a href='/date/2020-06-05T16:11:20/css-sizing-3/'>16:11:20 PDT</a></td><td>2020-06-05 16:09:51 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Don&#039;t override CSS2 sizing rules. Only supplement them.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/836e15d501790cc35506c82cd697ace9af8e6203/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-06-05T16:11:20/bikeshed/css-sizing-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-05-28</th><tr data-revised-hash='1446f838e4a2a3b3f82c08bec5be558cd0e13172'><td><a href='/date/2020-05-28T15:30:33/css-sizing-3/'>15:30:33 PDT</a></td><td>2020-05-28 15:30:09 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Export &#039;cyclic percentage&#039;.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1446f838e4a2a3b3f82c08bec5be558cd0e13172/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-05-28T15:30:33/bikeshed/css-sizing-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-04-28</th><tr data-revised-hash='0d508619fc37be589ea83c8631b02947f3867ad9'><td><a href='/date/2020-04-28T11:32:29/css-sizing-3/'>11:32:29 PDT</a></td><td>2020-04-28 11:31:58 PDT</td><td><span>fantasai</span></td><td>[css-align-3][css-sizing-3] Cross-link percentage handling of gaps. #4664</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0d508619fc37be589ea83c8631b02947f3867ad9/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-04-28T11:32:29/bikeshed/css-sizing-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-04-16</th><tr data-revised-hash='14eccf67a6789704cbea1dcccfdb262de90641ae'><td><a href='/date/2020-04-16T11:08:57/css-sizing-3/'>11:08:57 PDT</a></td><td>2020-04-16 11:08:26 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Remove extraneous &quot;for replaced elements&quot; qualifier. Delete typo.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/14eccf67a6789704cbea1dcccfdb262de90641ae/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-04-16T11:08:57/bikeshed/css-sizing-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-03-10</th><tr data-revised-hash='02274732ab357f2572b87166fcc67968a5bb0b7a'><td><a href='/date/2020-03-10T19:17:35/css-sizing-3/'>19:17:35 PDT</a></td><td>2020-03-10 19:17:14 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Fix copy-paste error. #4764</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/02274732ab357f2572b87166fcc67968a5bb0b7a/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-03-10T19:17:35/bikeshed/css-sizing-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-03-06</th><tr data-revised-hash='f0923cb9eb2a9fdc047e60cfdb1111fa9cae078f'><td><a href='/date/2020-03-06T15:10:52/css-sizing-3/'>15:10:52 PST</a></td><td>2020-03-06 15:10:29 PST</td><td><span>fantasai</span></td><td>[css-sizing-3][css-align-3] Clarify computed as vs. behaves as auto. #4525</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f0923cb9eb2a9fdc047e60cfdb1111fa9cae078f/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-03-06T15:10:52/bikeshed/css-sizing-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-01-16</th><tr data-revised-hash='fbc565e83f1ec2cf382c43e7931c533dc77e07cf'><td><a href='/date/2020-01-16T16:21:27/css-sizing-3/'>16:21:27 PST</a></td><td>2020-01-16 16:20:52 PST</td><td><span>fantasai</span></td><td>[meta] Align value definition reference across all specs. Use more obvious heading. Include link to definition syntax directly. #1397</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbc565e83f1ec2cf382c43e7931c533dc77e07cf/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-01-16T16:21:27/bikeshed/css-sizing-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-01-15</th><tr data-revised-hash='8366a1bb51059e877dc3fabdd45f8434b46a56e6'><td><a href='/date/2020-01-15T18:14:50/css-sizing-3/'>18:14:50 PST</a></td><td>2020-01-15 18:14:29 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Use ICB as default object size for boxes with an aspect ratio but no size.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8366a1bb51059e877dc3fabdd45f8434b46a56e6/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2020-01-15T18:14:50/bikeshed/css-sizing-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-12-12</th><tr data-revised-hash='8eff529ee295e30f3851a822a570476eb33038b3'><td><a href='/date/2019-12-12T15:23:11/css-sizing-3/'>15:23:11 PST</a></td><td>2019-12-12 15:22:48 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Remove non-zero to avoid open-range problem. (Initial value is &#039;auto&#039;, so this won&#039;t shrink down to zero by default.) #4217</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8eff529ee295e30f3851a822a570476eb33038b3/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-12-12T15:23:11/bikeshed/css-sizing-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='7954882cd10aeb88f6b0b5d0aeda6212955b061d'><td><a href='/date/2019-12-12T15:12:44/css-sizing-3/'>15:12:44 PST</a></td><td>2019-12-12 15:11:38 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Allow intrinsic sizing keywords to mean the corrsponding intrinsic sizes. Default to automatic size in the block axis unless otherwise defined. #3973 #4587</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7954882cd10aeb88f6b0b5d0aeda6212955b061d/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-12-12T15:12:44/bikeshed/css-sizing-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-08-19</th><tr data-revised-hash='d31390bb0db19a3ab819d51ac587de4b5f809d5c'><td><a href='/date/2019-08-19T09:50:49/css-sizing-3/'>09:50:49 PDT</a></td><td>2019-08-19 09:50:28 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Add another level of indirection to the example, to hopefully make #4177 clearer.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d31390bb0db19a3ab819d51ac587de4b5f809d5c/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-08-19T09:50:49/bikeshed/css-sizing-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-07-25</th><tr data-revised-hash='1812411d2d1bcb28df09115a56223d52dad8e3b1'><td><a href='/date/2019-07-25T13:57:02/css-sizing-3/'>13:57:02 PDT</a></td><td>2019-07-25 13:56:44 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Revert commit that made block-axis min/max-content compute to &#039;auto&#039;. &#039;auto&#039; invokes too much magic, and this precludes non-flow layouts from doing useful things with min/max-content. #3973.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1812411d2d1bcb28df09115a56223d52dad8e3b1/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-07-25T13:57:02/bikeshed/css-sizing-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-05</th><tr data-revised-hash='31871e8bb7ba276f2433c9eb418861520f5162cf'><td><a href='/date/2019-06-05T21:44:06/css-sizing-3/'>21:44:06 PDT</a></td><td>2019-06-05 21:43:50 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Fix markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/31871e8bb7ba276f2433c9eb418861520f5162cf/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-06-05T21:44:06/bikeshed/css-sizing-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-04</th><tr data-revised-hash='c91f475f2a49c2a33ba9ae2c77a0d338ea1e5e57'><td><a href='/date/2019-06-04T13:18:55/css-sizing-3/'>13:18:55 PDT</a></td><td>2019-06-04 13:18:37 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Rename spec #3962</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c91f475f2a49c2a33ba9ae2c77a0d338ea1e5e57/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-06-04T13:18:55/bikeshed/css-sizing-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-22</th><tr data-revised-hash='374ce2247beba3d1f974e63fd260d04146b45edd'><td><a href='/date/2019-05-22T13:53:44/css-sizing-3/'>13:53:44 PDT</a></td><td>2019-05-22 13:53:29 PDT</td><td><span>fantasai</span></td><td>[css-sizing-4] Revert to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/374ce2247beba3d1f974e63fd260d04146b45edd/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-22T13:53:44/bikeshed/css-sizing-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='c975ad3329889de93b6e0827eccdabb2a64c1cdf'><td><a href='/date/2019-05-22T13:52:20/css-sizing-3/'>13:52:20 PDT</a></td><td>2019-05-22 13:51:57 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Fix markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c975ad3329889de93b6e0827eccdabb2a64c1cdf/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-22T13:52:20/bikeshed/css-sizing-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-16</th><tr data-revised-hash='868f8e9e3c57055717094e51bd7881d5fd81baae'><td><a href='/date/2019-05-16T17:52:45/css-sizing-3/'>17:52:45 PDT</a></td><td>2019-05-16 17:52:28 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Define intrinsic sizes of fit-content(). #3731</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/868f8e9e3c57055717094e51bd7881d5fd81baae/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-16T17:52:45/bikeshed/css-sizing-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='5215564410cfce2ab03fb648dd8280d824d06b35'><td><a href='/date/2019-05-16T16:41:42/css-sizing-3/'>16:41:42 PDT</a></td><td>2019-05-16 16:40:57 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Define terms &#039;intrinsic size&#039; and &#039;intrinsic size contribution&#039;, which we use a lot but don&#039;t &lt;dfn&gt; anywhere.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5215564410cfce2ab03fb648dd8280d824d06b35/css-sizing-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-05-16T16:41:42/bikeshed/css-sizing-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='7ca62afb559381721fc5d082fd45ab70bfaf3c1c'><td><a href='/date/2019-05-16T16:20:26/css-sizing-3/'>16:20:26 PDT</a></td><td>2019-05-16 16:20:07 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Merge paragraphs to clarify we&#039;re talking about min-width/height only. #3556</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7ca62afb559381721fc5d082fd45ab70bfaf3c1c/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-16T16:20:26/bikeshed/css-sizing-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='108b00834fb917fbcda0ee8a9eaa6e5998e7145a'><td><a href='/date/2019-05-16T16:18:46/css-sizing-3/'>16:18:46 PDT</a></td><td>2019-05-16 16:18:25 PDT</td><td><span>fantasai</span></td><td>[css-display-3] Resolve min-width: auto to zero on elements without a box. #3557</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/108b00834fb917fbcda0ee8a9eaa6e5998e7145a/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-16T16:18:46/bikeshed/css-sizing-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-04-24</th><tr data-revised-hash='dcc4334c2f6f6b089e5a0407b58c77a6548f1549'><td><a href='/date/2019-04-24T11:20:04/css-sizing-3/'>11:20:04 PDT</a></td><td>2019-04-16 18:33:24 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-sizing-3] Actually define the term &quot;intrinsic sizes&quot; Closes #3680</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dcc4334c2f6f6b089e5a0407b58c77a6548f1549/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-04-24T11:20:04/bikeshed/css-sizing-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-02-20</th><tr data-revised-hash='37bb92ffb241e66654427b674eac53fd90eff68b'><td><a href='/date/2019-02-20T01:11:47/css-sizing-3/'>01:11:47 PST</a></td><td>2019-02-20 01:11:04 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Handle automatic minimum sizes alongside other intrinsic sizes in cyclic percentage handling. #2674</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/37bb92ffb241e66654427b674eac53fd90eff68b/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2019-02-20T01:11:47/bikeshed/css-sizing-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-09-26</th><tr data-revised-hash='3572cee95d05cd249bc20aee4fe25bd95fecef1b'><td><a href='/date/2018-09-26T02:15:53/css-sizing-3/'>02:15:53 PDT</a></td><td>2018-09-26 02:07:27 PDT</td><td><span>fantasai</span></td><td>[css-align-3][css-animations-1][css-animations-2][css-box-3][css-break-3][css-color-3][css-content-3][css-flexbox-1][cssgrid-1][css-images-3][css-images-4][css-inline-3][css-line-grid-1][css-lists-3][css-logical-1][css-overflow-3][css-page-3][css-page-floats-3][css-position-3][css-rhythm-1][css-round-display-1][css-ruby-1][css-scroll-snap-1][css-sizing-3][css-tables-3][css-text-3][css-text-4][css-text-decor-3][css-text-decor-4] Clean up Computed value and Animation type lines in propdef tables. 1st pass; CV lines might need some better wording tweaks.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3572cee95d05cd249bc20aee4fe25bd95fecef1b/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-09-26T02:15:53/bikeshed/css-sizing-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-30</th><tr data-revised-hash='19bbf4e3bc98304a33418def860a99045b1e1373'><td><a href='/date/2018-08-30T14:23:51/css-sizing-3/'>14:23:51 PDT</a></td><td>2018-08-30 14:23:20 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Add missing case to cyclic percentage list, and add summarizing table.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/19bbf4e3bc98304a33418def860a99045b1e1373/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-08-30T14:23:51/bikeshed/css-sizing-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='ea724a78f103e26cb7a4a2c9f6f90e9e83c7752e'><td><a href='/date/2018-06-21T12:27:34/css-sizing-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-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-21T12:27:34/bikeshed/css-sizing-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-13</th><tr data-revised-hash='893d3882b8526110079b2920231e80abc01bf0d0'><td><a href='/date/2018-06-13T16:44:04/css-sizing-3/'>16:44:04 PDT</a></td><td>2018-06-13 16:43:47 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Simplify the sizing diagrams and put them into the spec.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/893d3882b8526110079b2920231e80abc01bf0d0/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-13T16:44:04/bikeshed/css-sizing-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='675a26036462aef29222149c701a9787c59b5dec'><td><a href='/date/2018-06-13T14:27:31/css-sizing-3/'>14:27:31 PDT</a></td><td>2018-06-13 14:27:12 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Remove issue against min-content block size term</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/675a26036462aef29222149c701a9787c59b5dec/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-13T14:27:31/bikeshed/css-sizing-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='0bc9605205f00eb5fc4b579a75c04d19ace25a22'><td><a href='/date/2018-06-13T13:49:15/css-sizing-3/'>13:49:15 PDT</a></td><td>2018-06-13 13:48:54 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Update Changes list</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0bc9605205f00eb5fc4b579a75c04d19ace25a22/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-13T13:49:15/bikeshed/css-sizing-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='bd29dee8cee089157c4615aa57933324770e3945'><td><a href='/date/2018-06-13T13:39:39/css-sizing-3/'>13:39:39 PDT</a></td><td>2018-06-13 13:39:20 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Mark &#039;size&#039; shorthand issue in draft per WG resolution. #820</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bd29dee8cee089157c4615aa57933324770e3945/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-13T13:39:39/bikeshed/css-sizing-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='1a4e3ea43a34c5df879cd34705d806515e3f4504'><td><a href='/date/2018-06-13T11:42:48/css-sizing-3/'>11:42:48 PDT</a></td><td>2018-06-13 11:42:27 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing-3] Don&#039;t compute *-content to &#039;auto&#039; in block axis bc implementors don&#039;t like it. Related to #2708.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1a4e3ea43a34c5df879cd34705d806515e3f4504/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-13T11:42:48/bikeshed/css-sizing-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-08</th><tr data-revised-hash='f76ae080ea8e6bcfb0d9dba26bbe03b4732c6616'><td><a href='/date/2018-06-08T15:29:43/css-sizing-3/'>15:29:43 PDT</a></td><td>2018-06-08 15:29:23 PDT</td><td><span>fantasai</span></td><td>[css-multicol-1][meta] Update other specs that refer to multi-column elements to refer to multi-column containers. Completes fix for #1965</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f76ae080ea8e6bcfb0d9dba26bbe03b4732c6616/css-sizing-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-06-08T15:29:43/bikeshed/css-sizing-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-07</th><tr data-revised-hash='d975f8f68dd9334c551c760aa31b114daee42b37'><td><a href='/date/2018-06-07T20:45:21/css-sizing-3/'>20:45:21 PDT</a></td><td>2018-06-07 20:44:44 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-sizing-3] Fix typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d975f8f68dd9334c551c760aa31b114daee42b37/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-07T20:45:21/bikeshed/css-sizing-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='75cfe6b984356a175cb33df4205f456fbcbff71a'><td><a href='/date/2018-06-07T20:08:40/css-sizing-3/'>20:08:40 PDT</a></td><td>2018-06-07 20:08:21 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-sizing-3][css-ui-4] Box sizing migration * Add more guidance on usage of ambiguous sizing terms * Port box-sizing example from css-ui-3/4 to css-sizing-3 * Add caniuse bikeshed ref for box-sizing in css-sizing-3 * Drop box-sizing from css-ui-4 in favor of css-sizing-3 Closes #2458</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/75cfe6b984356a175cb33df4205f456fbcbff71a/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-06-07T20:08:40/bikeshed/css-sizing-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-05-25</th><tr data-revised-hash='bbe2f837081bfe20fd3b1916b8413779d4229ffe'><td><a href='/date/2018-05-25T09:06:32/css-sizing-3/'>09:06:32 PDT</a></td><td>2018-05-25 09:05:38 PDT</td><td><span>fantasai</span></td><td>[css-inline-3] Apply width/height properties to initial letters per Tantek?s request. &lt;https://lists.w3.org/Archives/Public/www-style/2015Sep/0096.html&gt; #863</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bbe2f837081bfe20fd3b1916b8413779d4229ffe/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-05-25T09:06:32/bikeshed/css-sizing-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-05-16</th><tr data-revised-hash='75437016bbb4edf06bf4c754a8e515f5a32748e9'><td><a href='/date/2018-05-16T18:03:21/css-sizing-3/'>18:03:21 PDT</a></td><td>2018-05-16 02:30:11 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Tweak wording, attempt 2. #2315</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/75437016bbb4edf06bf4c754a8e515f5a32748e9/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-05-16T18:03:21/bikeshed/css-sizing-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-04-25</th><tr data-revised-hash='09224c59c3be79c8727fc83a7eed9228e9484a37'><td><a href='/date/2018-04-25T17:38:46/css-sizing-3/'>17:38:46 PDT</a></td><td>2018-04-25 17:38:25 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Fix misuse of ?outer size? in box-sizing definition. (Thanks for noticing, gsnedders!)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/09224c59c3be79c8727fc83a7eed9228e9484a37/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-04-25T17:38:46/bikeshed/css-sizing-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-04-20</th><tr data-revised-hash='7fde1b50f94ddc807c694ba6909e43c0dd1a25b2'><td><a href='/date/2018-04-20T17:38:18/css-sizing-3/'>17:38:18 PDT</a></td><td>2018-04-20 17:37:58 PDT</td><td><span>fantasai</span></td><td>[css-sizing-3] Fix up percentage sizing per WG resolution--zero out margins/paddings/min-width/min-height. #2384 #2297</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7fde1b50f94ddc807c694ba6909e43c0dd1a25b2/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-04-20T17:38:18/bikeshed/css-sizing-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-04-04</th><tr data-revised-hash='8313051f3bb638c98ae42231e4f3ab8efb275635'><td><a href='/date/2018-04-04T14:11:36/css-sizing-3/'>14:11:36 PDT</a></td><td>2018-04-04 14:11:16 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing] Export some terms.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8313051f3bb638c98ae42231e4f3ab8efb275635/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-04-04T14:11:36/bikeshed/css-sizing-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-03-26</th><tr data-revised-hash='8c5bf7b0a9a50eb932e4fdbab51c58a1460434cd'><td><a href='/date/2018-03-26T15:19:27/css-sizing-3/'>15:19:27 PDT</a></td><td>2018-03-26 15:11:52 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing] Dfn some more terms.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8c5bf7b0a9a50eb932e4fdbab51c58a1460434cd/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-03-26T15:19:27/bikeshed/css-sizing-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='7877c59f4f18fe95fe37ad05533094b728ace726'><td><a href='/date/2018-03-26T11:12:31/css-sizing-3/'>11:12:31 PDT</a></td><td>2018-03-26 11:10:45 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-sizing] Specify that sizing properties containing %s are treated as property&#039;s initial value for intrinsic size contribution. Fixes #1132.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7877c59f4f18fe95fe37ad05533094b728ace726/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-03-26T11:12:31/bikeshed/css-sizing-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-03-07</th><tr data-revised-hash='40158a2098f3ed1b87c76cf7f8bac91bd171d471'><td><a href='/date/2018-03-07T22:43:23/css-sizing-3/'>22:43:23 PST</a></td><td>2018-03-07 22:43:06 PST</td><td><span>fantasai</span></td><td>[css-overflow-3] Export terms</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/40158a2098f3ed1b87c76cf7f8bac91bd171d471/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-03-07T22:43:23/bikeshed/css-sizing-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-03-05</th><tr data-revised-hash='462bad701cf6673226335a872f5ba4a0d7c8d079'><td><a href='/date/2018-03-05T22:54:59/css-sizing-3/'>22:54:59 PST</a></td><td>2018-03-05 20:11:34 PST</td><td><span>fantasai</span></td><td>[css-sizing-3] Export terms</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/462bad701cf6673226335a872f5ba4a0d7c8d079/css-sizing-3/Overview.bs'></a><a class='bikeshed success' href='/date/2018-03-05T22:54:59/bikeshed/css-sizing-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-sizing-3/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-sizing-3/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 2</span><form accept-charset='utf-8' action='/history/page/2/css-sizing-3/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/2/css-sizing-3/' method='get'><input type='submit' value='Last'></form></div></div></body></html>

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