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='q+QLBBv8ixR8vg3EsFz/5l2RfG3eEsB5BuLpbKIQkMY=' 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='q+QLBBv8ixR8vg3EsFz/5l2RfG3eEsB5BuLpbKIQkMY=' 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='q+QLBBv8ixR8vg3EsFz/5l2RfG3eEsB5BuLpbKIQkMY=' type='text/javascript'><!-- // --></script><script nonce='q+QLBBv8ixR8vg3EsFz/5l2RfG3eEsB5BuLpbKIQkMY=' 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-grid-1\/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-grid-1/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-grid-1/'>Specification</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 3</span><a class='icon button next' href='/history/page/2/css-grid-1/'></a><a class='icon button last' href='/history/page/3/css-grid-1/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-grid-1/Overview.html:</h3><table class='list tbody' id='history_table'><thead><tr><th>Uploaded</th><th>Revised</th><th>By</th><th>Comment</th><th></th></tr></thead><tbody><th colspan='5'>2023-12-11</th><tr data-revised-hash='4b417e09b04c4cae1e13983877f58c2579827fe6'><td><a href='/date/2023-12-11T13:53:11/css-grid-1/'>13:53:11 PST</a></td><td>2023-11-03 13:41:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Incorporate note about placement-before-sizing into the grid layout algorithm steps.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4b417e09b04c4cae1e13983877f58c2579827fe6/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-12-11T13:53:11/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='4b417e09b04c4cae1e13983877f58c2579827fe6'><td><a href='/date/2023-12-11T13:53:11/css-grid-1/'>13:53:11 PST</a></td><td>2023-11-03 13:41:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Incorporate note about placement-before-sizing into the grid layout algorithm steps.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4b417e09b04c4cae1e13983877f58c2579827fe6/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-12-11T13:53:11/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='4b417e09b04c4cae1e13983877f58c2579827fe6'><td><a href='/date/2023-12-11T13:53:11/css-grid-1/'>13:53:11 PST</a></td><td>2023-11-03 13:41:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Incorporate note about placement-before-sizing into the grid layout algorithm steps.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4b417e09b04c4cae1e13983877f58c2579827fe6/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-12-11T13:53:11/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-07-21</th><tr data-revised-hash='aebf69c686fb8d1f61753c268d6ff3ec6d22d4fe'><td><a href='/date/2023-07-21T08:55:41/css-grid-1/'>08:55:41 PDT</a></td><td>2023-07-17 15:47:37 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2] Allow fixed-range tracks to absorb leftover space from spanning items when intrinsic-range tracks are filled up, if possible. #3648</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aebf69c686fb8d1f61753c268d6ff3ec6d22d4fe/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-07-21T08:55:41/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-grid-1/'>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-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-05-07T21:39:40/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e190c4997a44e77230b7e1786f410e25a253bf3b'><td><a href='/date/2023-03-03T14:55:58/css-grid-1/'>14:55:58 PST</a></td><td>2022-09-06 04:52:48 PDT</td><td><span>fantasai</span></td><td>[css-device-adapt][css-grid][css-shapes][css-speech] Add range notation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e190c4997a44e77230b7e1786f410e25a253bf3b/css-grid-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-03-03T14:55:58/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-01-20</th><tr data-revised-hash='f999b9ca7c3c45b48d00532909c9572b57593417'><td><a href='/date/2023-01-20T15:04:12/css-grid-1/'>15:04:12 PST</a></td><td>2023-01-18 14:45:39 PST</td><td><span>fantasai</span></td><td>[css-grid-1][css-grid-2][editorial] Fix &#039;auto&#039; sizing function link in layout-algorithm Without the &#039;grid-template-rows&#039; prefix this link points at &#039;auto&#039; in the context of the grid item placement properties, but like its neighbors it is actually meant to refer to the track sizing function.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f999b9ca7c3c45b48d00532909c9572b57593417/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-20T15:04:12/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-01-19</th><tr data-revised-hash='5b15aeea6caedd42cb170f1e2e01f723a049a525'><td><a href='/date/2023-01-19T13:55:14/css-grid-1/'>13:55:14 PST</a></td><td>2023-01-19 13:54:39 PST</td><td><span>fantasai</span></td><td>[css-grid] Fix typo #8316</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5b15aeea6caedd42cb170f1e2e01f723a049a525/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-19T13:55:14/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-03</th><tr data-revised-hash='d46fc93b544da41b56cd2d32ca23de0e00009177'><td><a href='/date/2022-10-03T12:28:50/css-grid-1/'>12:28:50 PDT</a></td><td>2022-10-03 12:28:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2][editorial] Clarify that tracks can&#039;t be *fully* intrinsic, but can have an intrinsic length (if paired with a fixed in minmax()). #7238</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d46fc93b544da41b56cd2d32ca23de0e00009177/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-03T12:28:50/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='de6d4f2c5e482ea131acc470160b943965207538'><td><a href='/date/2022-10-03T11:01:58/css-grid-1/'>11:01:58 PDT</a></td><td>2022-10-03 11:01:32 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2] Clarify that &lt;&#039;grid-template&#039;&gt; serialization is preferred if &#039;grid&#039; is ambiguous. #7805</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/de6d4f2c5e482ea131acc470160b943965207538/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-03T11:01:58/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-08-18</th><tr data-revised-hash='92edb0b6a4ef2b339db484ca6c23c4f4ce9fb8b8'><td><a href='/date/2022-08-18T15:51:48/css-grid-1/'>15:51:48 PDT</a></td><td>2022-08-18 15:50:33 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-flexbox][css-grid] Content-based auto min doesn&#039;t cause indefiniteness, but other *-content min sizes do. #6457</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/92edb0b6a4ef2b339db484ca6c23c4f4ce9fb8b8/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-18T15:51:48/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='532dd22de51f117f271515fa9bdfebf699b338e4'><td><a href='/date/2022-06-29T01:09:58/css-grid-1/'>01:09:58 PDT</a></td><td>2022-06-23 00:10:07 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>Fix typo for lowerbound value in grid-line</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/532dd22de51f117f271515fa9bdfebf699b338e4/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-06-29T01:09:58/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-18</th><tr data-revised-hash='ff346d3002ec067fa7799e48c2e13ba87519371f'><td><a href='/date/2022-03-18T09:16:34/css-grid-1/'>09:16:34 PDT</a></td><td>2022-03-18 09:15:46 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Update changes section. https://github.com/w3c/csswg-drafts/issues/6278#issuecomment-1067135493</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ff346d3002ec067fa7799e48c2e13ba87519371f/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-18T09:16:34/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='7ef611f5d5e13d629ee46e67884b7dc50b5a42fb'><td><a href='/date/2022-03-18T09:00:52/css-grid-1/'>09:00:52 PDT</a></td><td>2022-03-18 08:59:53 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] More precisely define effect of fit-content() limits when accommodating spanning items. #4549</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7ef611f5d5e13d629ee46e67884b7dc50b5a42fb/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-18T09:00:52/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-14</th><tr data-revised-hash='858d2acfb9be58ed18186422ee37d28b0367b367'><td><a href='/date/2022-03-14T15:25:46/css-grid-1/'>15:25:46 PDT</a></td><td>2022-03-14 15:24:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Restore accidentally-dropped specification of &#039;base sizes&#039;; remove nonsense application of &#039;intrinsic&#039; to &#039;growth limits&#039;. #3621</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/858d2acfb9be58ed18186422ee37d28b0367b367/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-14T15:25:46/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='a030e62f47510366737ec836d3555372e97b3458'><td><a href='/date/2022-03-14T10:02:49/css-grid-1/'>10:02:49 PDT</a></td><td>2022-03-14 10:02:12 PDT</td><td><span>fantasai</span></td><td>[css-grid] Improve wording for automin clamping. https://github.com/w3c/csswg-drafts/issues/6278#issuecomment-1059359058</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a030e62f47510366737ec836d3555372e97b3458/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-14T10:02:49/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='79efb4c7e1c02777861218ec7994cde46022c59a'><td><a href='/date/2022-03-14T09:43:23/css-grid-1/'>09:43:23 PDT</a></td><td>2022-03-14 09:42:50 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] fix indent</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/79efb4c7e1c02777861218ec7994cde46022c59a/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-14T09:43:23/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='301805d6b384852c173d7849ce0aa373c9624af0'><td><a href='/date/2022-03-09T16:32:27/css-grid-1/'>16:32:27 PST</a></td><td>2022-03-09 16:31:54 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2] Revert changes for #3648, see https://github.com/w3c/csswg-drafts/issues/3648#issuecomment-1058709620</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/301805d6b384852c173d7849ce0aa373c9624af0/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-09T16:32:27/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-03</th><tr data-revised-hash='ab0b961d3ae24928e1f43cdc5cabe661b20061be'><td><a href='/date/2022-03-03T16:07:52/css-grid-1/'>16:07:52 PST</a></td><td>2022-03-03 16:07:29 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Rephrase &#039;distribute extra space&#039; opening to be more algorithmic for clarity. #3648</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ab0b961d3ae24928e1f43cdc5cabe661b20061be/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-03T16:07:52/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='cc5854f465be21567ec314c8270f6b815a5dec9a'><td><a href='/date/2022-03-03T15:43:12/css-grid-1/'>15:43:12 PST</a></td><td>2022-03-03 15:41:56 PST</td><td><span>fantasai</span></td><td>[css-grid] Distinguish no track preference vs empty preferred tracks. #3648</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cc5854f465be21567ec314c8270f6b815a5dec9a/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-03T15:43:12/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e29d6453f60d2caed9e0a08c6b99c8b003c342c2'><td><a href='/date/2022-03-03T14:26:01/css-grid-1/'>14:26:01 PST</a></td><td>2022-03-03 14:24:47 PST</td><td><span>fantasai</span></td><td>[css-grid-1][css-grid-2] Fix auto minimum size to better handle percentage specified and maximum sizes. #6278</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e29d6453f60d2caed9e0a08c6b99c8b003c342c2/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-03-03T14:26:01/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-30</th><tr data-revised-hash='1a369425e04d6e65c119b5d7861f6e1c6c699e25'><td><a href='/date/2021-12-30T22:50:56/css-grid-1/'>22:50:56 PST</a></td><td>2021-12-30 22:36:10 PST</td><td><span>fantasai</span></td><td>[css-grid-1][css-grid-2] Export term &#039;collapsed grid track&#039;.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1a369425e04d6e65c119b5d7861f6e1c6c699e25/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-30T22:50:56/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-10-28</th><tr data-revised-hash='8eff427c8f18b99ae72e24556af2109b91804b15'><td><a href='/date/2021-10-28T14:58:40/css-grid-1/'>14:58:40 PDT</a></td><td>2021-10-28 14:58:14 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2] Allow non-intrinsic tracks to absorb space when possible/needed. #3648</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8eff427c8f18b99ae72e24556af2109b91804b15/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-28T14:58:40/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-10-27</th><tr data-revised-hash='9f60fcc74fa6bfeee248f3e22a3bdcf54ef17f3e'><td><a href='/date/2021-10-27T15:46:20/css-grid-1/'>15:46:20 PDT</a></td><td>2021-10-27 15:45:52 PDT</td><td><span>fantasai</span></td><td>[css-grid-1][css-grid-2][editorial] Fix link</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9f60fcc74fa6bfeee248f3e22a3bdcf54ef17f3e/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-10-27T15:46:20/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-02</th><tr data-revised-hash='5193e8dc8dc78eb0ea6e09e2dd9fefe87bfad7d4'><td><a href='/date/2021-07-02T09:22:44/css-grid-1/'>09:22:44 PDT</a></td><td>2021-07-02 09:22:13 PDT</td><td><span>fantasai</span></td><td>[css-grid] Distribute space to intrinsic flexible tracks continuously between zero and one. #6078</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5193e8dc8dc78eb0ea6e09e2dd9fefe87bfad7d4/css-grid-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-07-02T09:22:44/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-16</th><tr data-revised-hash='e98fd390cf3dcc9dbe7216b6f6750b64ef0893b2'><td><a href='/date/2021-06-16T16:39:43/css-grid-1/'>16:39:43 PDT</a></td><td>2021-06-16 16:39:09 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid][editorial] Add mention of aspect-ratio to the note listing possible causes for running steps 3/4 of Grid Layout. #6356</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e98fd390cf3dcc9dbe7216b6f6750b64ef0893b2/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-06-16T16:39:43/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3b11d727bdff1b110d94eb8e5f0c9971e52dbef3'><td><a href='/date/2021-06-16T16:04:09/css-grid-1/'>16:04:09 PDT</a></td><td>2021-06-16 16:03:39 PDT</td><td><span>fantasai</span></td><td>[css-grid] Restore content-alignment condition for stretching auto tracks. #5966</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3b11d727bdff1b110d94eb8e5f0c9971e52dbef3/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-06-16T16:04:09/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-15</th><tr data-revised-hash='b815fe206821d49b3b7cc84a0f0bb4df5842adb3'><td><a href='/date/2021-06-15T16:13:50/css-grid-1/'>16:13:50 PDT</a></td><td>2021-06-15 16:12:52 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Overflowing margin-aligned items should safe-align, just like flexbox (and implementations). Caught during review in #5923</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b815fe206821d49b3b7cc84a0f0bb4df5842adb3/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-06-15T16:13:50/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b57fa599fbc3c39abb4c4239fba5825cbf5b9c95'><td><a href='/date/2021-06-15T14:41:07/css-grid-1/'>14:41:07 PDT</a></td><td>2021-06-15 14:40:36 PDT</td><td><span>fantasai</span></td><td>[css-grid-2] Sync auto margins changes from css-grid-1. #5923</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b57fa599fbc3c39abb4c4239fba5825cbf5b9c95/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-06-15T14:41:07/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='501cb51c1917473064b431a2224b7d9032177f8d'><td><a href='/date/2021-06-15T14:33:12/css-grid-1/'>14:33:12 PDT</a></td><td>2021-06-15 14:32:46 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Make auto margin prose fully normative. #5923</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/501cb51c1917473064b431a2224b7d9032177f8d/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-06-15T14:33:12/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='1ecb6bb7d31953f54f16f96f84a618ad7071cd3e'><td><a href='/date/2021-06-15T14:13:54/css-grid-1/'>14:13:54 PDT</a></td><td>2021-06-15 14:13:27 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Note that absorbing positive free space means auto margins disable self-alignment.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1ecb6bb7d31953f54f16f96f84a618ad7071cd3e/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-06-15T14:13:54/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='948621b09e993c399ee4d7692e6fcdbfeef1d587'><td><a href='/date/2021-06-15T13:26:53/css-grid-1/'>13:26:53 PDT</a></td><td>2021-06-15 13:26:13 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grids-1][editorial] Markup fix, closes #5626</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/948621b09e993c399ee4d7692e6fcdbfeef1d587/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-06-15T13:26:53/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-grid-1/'>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-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T14:26:46/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-grid-1/'>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-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T13:52:15/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-04-16</th><tr data-revised-hash='4f3ca41115bb16891e95069fe9c1db0ffd70e0f0'><td><a href='/date/2021-04-16T10:46:06/css-grid-1/'>10:46:06 PDT</a></td><td>2021-04-16 10:45:37 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2] Set min-height for ex 39 (#6214) Set the `min-height` property for the `.grid` class to make the `align-content: center;` work much more clear. `align-content: center;` has no sense if we run the example 39 as it is.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4f3ca41115bb16891e95069fe9c1db0ffd70e0f0/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-04-16T10:46:06/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='dd31b4f26fe3db9d0c5bb46fcc6a1b65f1d56081'><td><a href='/date/2021-03-11T12:27:39/css-grid-1/'>12:27:39 PST</a></td><td>2021-03-11 12:27:16 PST</td><td><span>fantasai</span></td><td>[css-grid] Exclude non-replaced elements from using transferred size in content-based minimum size. #6069</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dd31b4f26fe3db9d0c5bb46fcc6a1b65f1d56081/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-11T12:27:39/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f6478089c04b3366b09f78eb7ea83b4a5d8e95e0'><td><a href='/date/2021-03-05T11:15:12/css-grid-1/'>11:15:12 PST</a></td><td>2021-03-05 11:13:20 PST</td><td><span>fantasai</span></td><td>[css-grid][css-flexbox] Clarify that content-based minimum size is an intrinsic size contribution and thus special rules in css-sizing-3 (like cyclic percentage resolution) apply. #5665&quot;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f6478089c04b3366b09f78eb7ea83b4a5d8e95e0/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-05T11:15:12/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-26</th><tr data-revised-hash='81619718cc4dc71875e543db1de51cc139b43e1c'><td><a href='/date/2021-02-26T13:00:54/css-grid-1/'>13:00:54 PST</a></td><td>2021-02-26 13:00:37 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2] Use `body` in example 9 (#6037) Use the body element because it has used as a grid container in the example above: ``` body { display: grid; grid: &quot;h h h&quot; &quot;a b c&quot; &quot;f f f&quot;; grid-template-columns: auto 1fr 20%; } article { grid-area: b; min-width: 12em; } nav { grid-area: a; /* auto min-width */ } aside { grid-area: c; min-width: 12em; } ``` This change makes these examples much more clear.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/81619718cc4dc71875e543db1de51cc139b43e1c/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-26T13:00:54/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-25</th><tr data-revised-hash='18cff73cd664da8596ac2c4f8516f757ee5ad138'><td><a href='/date/2021-02-25T17:23:19/css-grid-1/'>17:23:19 PST</a></td><td>2021-02-25 17:22:59 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][css-grid-2] Replace article to main (#6012)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/18cff73cd664da8596ac2c4f8516f757ee5ad138/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-25T17:23:19/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-09</th><tr data-revised-hash='5e270fd8cc4be7ec3fded683baf439c4243f82ab'><td><a href='/date/2021-02-09T17:53:53/css-grid-1/'>17:53:53 PST</a></td><td>2021-02-09 17:53:30 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Specify height in example 8 for #grid (#5968) I would specify the height property in example 8 of the Grid Areas chapter for `#grid`. This makes it easy to see the differences between `align-self: start;` and `align-self: end;` for newcomers. Otherwise, it&#039;s may not so clear how `align-self: start;` and `align-self: end;` styles work if you try to run this snippet. [3.3. Grid Areas](https://www.w3.org/TR/css-grid-1/#grid-area-concept)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5e270fd8cc4be7ec3fded683baf439c4243f82ab/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-09T17:53:53/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-01-07</th><tr data-revised-hash='7f305cdd68138119b59622699d83d68325c103a6'><td><a href='/date/2021-01-07T13:55:40/css-grid-1/'>13:55:40 PST</a></td><td>2021-01-07 13:55:15 PST</td><td><span>fantasai</span></td><td>[css-grid] Simplify description of normal sizing. https://github.com/w3c/csswg-drafts/issues/5713#issuecomment-747800495</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7f305cdd68138119b59622699d83d68325c103a6/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-01-07T13:55:40/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-grid-1/'>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-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-21T13:03:46/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='058459dd0f52d3a642be91b9eecb47c126e771e6'><td><a href='/date/2020-12-15T22:52:52/css-grid-1/'>22:52:52 PST</a></td><td>2020-12-15 22:52:29 PST</td><td><span>fantasai</span></td><td>[css-grid] Update changes section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/058459dd0f52d3a642be91b9eecb47c126e771e6/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-15T22:52:52/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='45ae74c98a21a219fda7982150a533795bcc058f'><td><a href='/date/2020-12-15T15:34:11/css-grid-1/'>15:34:11 PST</a></td><td>2020-12-15 15:33:38 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Any size in the other dimension transfers, not just natural sizes.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/45ae74c98a21a219fda7982150a533795bcc058f/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-15T15:34:11/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='933a7cc49e00086da19251eb4c575118904c1bb3'><td><a href='/date/2020-12-15T15:01:56/css-grid-1/'>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-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-15T15:01:56/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='aa1768b58639c24a5133e62930a45aa53254e397'><td><a href='/date/2020-12-15T12:21:02/css-grid-1/'>12:21:02 PST</a></td><td>2020-12-15 12:20:37 PST</td><td><span>fantasai</span></td><td>[css-grid-1] Add more words to note to avoid people reading &#039;can&#039; as &#039;will&#039;. #5713</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aa1768b58639c24a5133e62930a45aa53254e397/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-15T12:21:02/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='5713815e4bf41c746dedcabe96c0af7bea09ea0c'><td><a href='/date/2020-12-15T11:33:33/css-grid-1/'>11:33:33 PST</a></td><td>2020-12-15 11:33:11 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Switch back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5713815e4bf41c746dedcabe96c0af7bea09ea0c/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-15T11:33:33/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3ff724ebc1b24116e0edb7c55dcf0ef4ca8480ba'><td><a href='/date/2020-12-15T11:30:04/css-grid-1/'>11:30:04 PST</a></td><td>2020-12-15 11:29:40 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] fix linking errors</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3ff724ebc1b24116e0edb7c55dcf0ef4ca8480ba/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-15T11:30:04/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-04</th><tr data-revised-hash='15e577924ba4c9ccdcb4ae7b3a39306b757e3942'><td><a href='/date/2020-11-04T14:05:05/css-grid-1/'>14:05:05 PST</a></td><td>2020-11-04 14:04:41 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid][editorial] tweak wording</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/15e577924ba4c9ccdcb4ae7b3a39306b757e3942/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-11-04T14:05:05/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ef16e890d2503b8ba762d7e3e42e27426fd3abcd'><td><a href='/date/2020-11-04T14:00:10/css-grid-1/'>14:00:10 PST</a></td><td>2020-11-04 13:59:41 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>Factor out the final &#039;clamp by the maximum size&#039; step that was in every individual size suggestion algo. #4901</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ef16e890d2503b8ba762d7e3e42e27426fd3abcd/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-11-04T14:00:10/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-03</th><tr data-revised-hash='e36e636623d40849dfaa2841149c4ee6cf26e539'><td><a href='/date/2020-11-03T16:54:41/css-grid-1/'>16:54:41 PST</a></td><td>2020-11-03 16:54:17 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-flexbox-1][css-grid-1][css-grid-2] Align terminology. #5663</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e36e636623d40849dfaa2841149c4ee6cf26e539/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-11-03T16:54:41/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f886d3339796020d9fc1dd1e3866fa8e3004c32e'><td><a href='/date/2020-10-20T23:34:10/css-grid-1/'>23:34:10 PDT</a></td><td>2020-10-20 23:33:35 PDT</td><td><span>fantasai</span></td><td>[css-grid] markup fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f886d3339796020d9fc1dd1e3866fa8e3004c32e/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-20T23:34:10/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-19</th><tr data-revised-hash='c226a0b539d12680ff1ce4f34bdb156f7169e452'><td><a href='/date/2020-10-19T21:15:57/css-grid-1/'>21:15:57 PDT</a></td><td>2020-10-19 21:15:33 PDT</td><td><span>fantasai</span></td><td>[css-grid] CRD publication prep</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c226a0b539d12680ff1ce4f34bdb156f7169e452/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-19T21:15:57/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='39d737a079d9b473f3503f1aabdce9a837686fdd'><td><a href='/date/2020-10-13T14:11:28/css-grid-1/'>14:11:28 PDT</a></td><td>2020-10-13 14:11:03 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Switch intrinsic aspect ratio to preferred aspect ratio to more directly account for &#039;aspect-ratio&#039;. #4962</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/39d737a079d9b473f3503f1aabdce9a837686fdd/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T14:11:28/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='a5199f60dcbd049d69f0e00fca3058837367908c'><td><a href='/date/2020-10-13T13:58:49/css-grid-1/'>13:58:49 PDT</a></td><td>2020-10-13 13:58:25 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Fix errors introduced by 72f2bb240038bf00ada76dbac004105138231866 and correctly define interaction with aspect ratios.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a5199f60dcbd049d69f0e00fca3058837367908c/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T13:58:49/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-grid-1/'>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-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-18T15:42:57/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-13</th><tr data-revised-hash='4f32859c3751d752ea36237b625a5ea73c7e5c4e'><td><a href='/date/2020-08-13T10:29:06/css-grid-1/'>10:29:06 PDT</a></td><td>2020-08-13 10:28:27 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>updates for publishing</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4f32859c3751d752ea36237b625a5ea73c7e5c4e/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-13T10:29:06/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='bc245bd5f65a40ccd335dd7967ce60ed8909941f'><td><a href='/date/2020-08-11T09:03:39/css-grid-1/'>09:03:39 PDT</a></td><td>2020-08-10 14:23:27 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] fix typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bc245bd5f65a40ccd335dd7967ce60ed8909941f/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-11T09:03:39/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06</th><tr data-revised-hash='9c363cc147ed8e92eb3a788f221d60e3a454c162'><td><a href='/date/2020-08-06T15:17:06/css-grid-1/'>15:17:06 PDT</a></td><td>2020-08-06 14:41:22 PDT</td><td><span>fantasai</span></td><td>[css-grid] s/plicitly-created/plicitly-assigned/g (editorial)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9c363cc147ed8e92eb3a788f221d60e3a454c162/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-06T15:17:06/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='554389c8706ffa463d4680f62b081b6305d19c8c'><td><a href='/date/2020-08-04T19:27:10/css-grid-1/'>19:27:10 PDT</a></td><td>2020-08-04 18:44:49 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Grid 2 integration editorial prep: adjust line breaks, fix css-display terminology, move sentence to more appropriate section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/554389c8706ffa463d4680f62b081b6305d19c8c/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-04T19:27:10/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='a518fbf6848205f1944732b45b3a46c0f9d8d609'><td><a href='/date/2020-08-04T12:35:24/css-grid-1/'>12:35:24 PDT</a></td><td>2020-08-04 12:35:01 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Move from &#039;ex/implicitly-named lines&#039; to &#039;ex/implicitly-created line names&#039;. #5393</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a518fbf6848205f1944732b45b3a46c0f9d8d609/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-04T12:35:24/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b32406838df1b549a55c2f5ab6a635fb5f65c293'><td><a href='/date/2020-08-04T12:11:37/css-grid-1/'>12:11:37 PDT</a></td><td>2020-08-04 12:11:11 PDT</td><td><span>fantasai</span></td><td>[css-grid-2] Fix linking.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b32406838df1b549a55c2f5ab6a635fb5f65c293/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-04T12:11:37/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b4a9f27e5e5fb7fa2dea4565da967a3cd317e5bb'><td><a href='/date/2020-08-04T12:05:34/css-grid-1/'>12:05:34 PDT</a></td><td>2020-08-04 12:05:15 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Switch a number of manual links over to appropriate Bikeshed form.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b4a9f27e5e5fb7fa2dea4565da967a3cd317e5bb/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-04T12:05:34/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='88d13775035e559900bf8db771df4781cda48e6d'><td><a href='/date/2020-08-04T11:56:36/css-grid-1/'>11:56:36 PDT</a></td><td>2020-08-04 11:52:03 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] &#039;implicit named line&#039; =&gt; &#039;implicitly-named line&#039;, and dfn &#039;explicitly-named line&#039; as well.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/88d13775035e559900bf8db771df4781cda48e6d/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-04T11:56:36/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-31</th><tr data-revised-hash='b8be3120ec9fdfae3e7870681f18491c56d9b303'><td><a href='/date/2020-07-31T15:52:21/css-grid-1/'>15:52:21 PDT</a></td><td>2020-07-31 15:50:13 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Adjust heading to match previous. https://github.com/w3c/csswg-drafts/issues/5351#issuecomment-663201925</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b8be3120ec9fdfae3e7870681f18491c56d9b303/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-31T15:52:21/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='0b262872ba717e7b6c73f2c116d47b5e6c382185'><td><a href='/date/2020-07-31T15:47:31/css-grid-1/'>15:47:31 PDT</a></td><td>2020-07-31 15:47:09 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Add test links.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0b262872ba717e7b6c73f2c116d47b5e6c382185/css-grid-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-07-31T15:47:31/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-29</th><tr data-revised-hash='10d44dc38dd6077cb91d462b57b019765020ef4a'><td><a href='/date/2020-07-29T13:53:16/css-grid-1/'>13:53:16 PDT</a></td><td>2020-07-29 13:51:10 PDT</td><td><span title='Oriol Brufau'>oriol</span></td><td>[css-grid-1] Remove duplicated for-each quantifier. #4544</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/10d44dc38dd6077cb91d462b57b019765020ef4a/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-29T13:53:16/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-28</th><tr data-revised-hash='c3878f488586c35a62f489ea3143a2ea7c5b4a95'><td><a href='/date/2020-07-28T11:14:53/css-grid-1/'>11:14:53 PDT</a></td><td>2020-07-28 11:08:32 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Revert fix to #3705 so that items crossing flexible tracks do not contribute to inflexible intrinsically-sized tracks. #4783&quot; This reverts commit 90511c68da5d25661d8aa3aabcf51486b9b5e541.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c3878f488586c35a62f489ea3143a2ea7c5b4a95/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-28T11:14:53/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='df5c685044ebb6c4f3dca38b3b3280c6bbf0688c'><td><a href='/date/2020-07-28T11:05:40/css-grid-1/'>11:05:40 PDT</a></td><td>2020-07-28 11:05:09 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Per WG resolution, zero out the automatic minimum contribution of a spanning item if it crosses a flexible track. #4783.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/df5c685044ebb6c4f3dca38b3b3280c6bbf0688c/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-28T11:05:40/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-27</th><tr data-revised-hash='c942a590ddfcb187db132fc0a9e14adaa49bb284'><td><a href='/date/2020-07-27T13:51:42/css-grid-1/'>13:51:42 PDT</a></td><td>2020-07-27 13:51:13 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Shift testcase link to correct section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c942a590ddfcb187db132fc0a9e14adaa49bb284/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-27T13:51:42/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='25fc835edb29d5d4a47b1c9626e4d1c8bfdb1be1'><td><a href='/date/2020-07-27T12:36:54/css-grid-1/'>12:36:54 PDT</a></td><td>2020-07-27 12:36:32 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Finish reverting 64494c001f8a9da9bc0efd7bc760240b726f97a2 #4549</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/25fc835edb29d5d4a47b1c9626e4d1c8bfdb1be1/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-27T12:36:54/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-22</th><tr data-revised-hash='a8694a04d94720b19dabced0e6f7f1565207c9a6'><td><a href='/date/2020-07-22T17:25:27/css-grid-1/'>17:25:27 PDT</a></td><td>2020-07-22 17:19:09 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Update Changes and DoC</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a8694a04d94720b19dabced0e6f7f1565207c9a6/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T17:25:27/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='d0029573cade02b2c1dff35d38a998bb5fcadef0'><td><a href='/date/2020-07-22T17:16:03/css-grid-1/'>17:16:03 PDT</a></td><td>2020-07-22 17:15:36 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Resimplify note. #5351</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d0029573cade02b2c1dff35d38a998bb5fcadef0/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T17:16:03/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='53c3fc207e1c2f6adf3e9aa106f67d7d355b597e'><td><a href='/date/2020-07-22T17:14:29/css-grid-1/'>17:14:29 PDT</a></td><td>2020-07-22 17:07:33 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Add test links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/53c3fc207e1c2f6adf3e9aa106f67d7d355b597e/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T17:14:29/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='1e6aa22badbe8848f98982a3bf0562b76fb14fdf'><td><a href='/date/2020-07-22T17:01:00/css-grid-1/'>17:01:00 PDT</a></td><td>2020-07-22 17:00:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Update changes section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1e6aa22badbe8848f98982a3bf0562b76fb14fdf/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T17:01:00/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='71fab3ad1a8fad29c1dbd9d319ca2e30d71ec6fa'><td><a href='/date/2020-07-22T16:49:18/css-grid-1/'>16:49:18 PDT</a></td><td>2020-07-22 16:48:57 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Revert but reword step 2 of Distributing Extra Space, as it *does* have an effect on growth limits if they&#039;re infinitely growable. #5351</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/71fab3ad1a8fad29c1dbd9d319ca2e30d71ec6fa/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T16:49:18/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='239d0b2f453eef786a8d9b166f58ecb9e756d242'><td><a href='/date/2020-07-22T16:20:28/css-grid-1/'>16:20:28 PDT</a></td><td>2020-07-22 16:20:01 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Restore the first fit-content() clamping, which does indeed need to stay around. Whoops. #4549</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/239d0b2f453eef786a8d9b166f58ecb9e756d242/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T16:20:28/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='fcb832e7bfc31099d815229576eeed75f2b4e7ca'><td><a href='/date/2020-07-22T15:42:04/css-grid-1/'>15:42:04 PDT</a></td><td>2020-07-22 15:37:17 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Clarify that fit-content() arg does not clamp the automatic minimum size. #4549</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fcb832e7bfc31099d815229576eeed75f2b4e7ca/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T15:42:04/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='faccaf7fe308606686bdb3dfcf5358ce1d67affb'><td><a href='/date/2020-07-22T15:32:28/css-grid-1/'>15:32:28 PDT</a></td><td>2020-07-22 15:29:20 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Revert accidental change from min-content to min-size in commit f48098caaf4c7988d51c5598d276aabb70cf8a5b. #4790 #5352</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/faccaf7fe308606686bdb3dfcf5358ce1d67affb/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T15:32:28/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e7bfcea9271e0d09750888cf10202a25ed15669e'><td><a href='/date/2020-07-22T15:31:13/css-grid-1/'>15:31:13 PDT</a></td><td>2020-07-22 15:30:46 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Require grid-template-areas to define at least one grid cell. #5110</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e7bfcea9271e0d09750888cf10202a25ed15669e/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T15:31:13/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='d05f41719044893f02c354585283679f7771e5c0'><td><a href='/date/2020-07-22T15:23:09/css-grid-1/'>15:23:09 PDT</a></td><td>2020-07-22 15:22:48 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] fix linking error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d05f41719044893f02c354585283679f7771e5c0/css-grid-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-22T15:23:09/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='9752b894bd053f4155765557b1085422747e57cd'><td><a href='/date/2020-07-22T15:14:04/css-grid-1/'>15:14:04 PDT</a></td><td>2020-07-22 15:13:36 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1][editorial] Make initial calculation of item-incurred increase easier to read. #5351</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9752b894bd053f4155765557b1085422747e57cd/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-22T15:14:04/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='dc625979694acdba6816f513db443b4259818456'><td><a href='/date/2020-07-22T14:58:56/css-grid-1/'>14:58:56 PDT</a></td><td>2020-07-22 14:54:03 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Add reminder note about fit-content/auto being treated like max-content to the section where it matters the most.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dc625979694acdba6816f513db443b4259818456/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-22T14:58:56/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e884a56530c44a86647f7042ba070ef18c109305'><td><a href='/date/2020-07-22T14:57:04/css-grid-1/'>14:57:04 PDT</a></td><td>2020-07-22 14:56:41 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Remove redundant/confusing mentions of fit-content(), since the actual handling for this case is already built into the called algo. #4549</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e884a56530c44a86647f7042ba070ef18c109305/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-22T14:57:04/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='a2a7d940874194cc85fa00cedf42630f2d1259f0'><td><a href='/date/2020-07-22T14:09:14/css-grid-1/'>14:09:14 PDT</a></td><td>2020-07-22 14:08:51 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Add previous change to Changes section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a2a7d940874194cc85fa00cedf42630f2d1259f0/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-22T14:09:14/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='713ccf84b8dd26abd11191fb9b8f7b15d3fe4108'><td><a href='/date/2020-07-22T14:04:23/css-grid-1/'>14:04:23 PDT</a></td><td>2020-07-22 14:03:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Clarify antecedents for flexible tracks. #4544</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/713ccf84b8dd26abd11191fb9b8f7b15d3fe4108/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-22T14:04:23/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-21</th><tr data-revised-hash='479a771fd600f08fcef103c85800c53043997a06'><td><a href='/date/2020-07-21T23:24:43/css-grid-1/'>23:24:43 PDT</a></td><td>2020-07-21 23:24:13 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Update DoC</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/479a771fd600f08fcef103c85800c53043997a06/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-21T23:24:43/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07</th><tr data-revised-hash='f358a524a9b192ac33954cc06ec7a61efdf4e601'><td><a href='/date/2020-07-07T16:38:54/css-grid-1/'>16:38:54 PDT</a></td><td>2020-07-07 16:38:29 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Update Changes section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f358a524a9b192ac33954cc06ec7a61efdf4e601/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-07T16:38:54/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='388d53b0204582fe48473f5181ff59d50770858f'><td><a href='/date/2020-07-07T16:23:36/css-grid-1/'>16:23:36 PDT</a></td><td>2020-07-07 16:23:06 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Clarify that grid-auto-rows/columns size explicit tracks created by grid-template-areas but not sized by grid-template-rows/columns. #4914</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/388d53b0204582fe48473f5181ff59d50770858f/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-07T16:23:36/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='bcca0f7bfc197bcfc555148a9b7659790aaee1a5'><td><a href='/date/2020-07-07T16:13:04/css-grid-1/'>16:13:04 PDT</a></td><td>2020-07-07 16:12:36 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Add an issue pointing out the weirdness of g-t-c/r resolved values, and noting that we intend to remove it. #4475</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bcca0f7bfc197bcfc555148a9b7659790aaee1a5/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-07T16:13:04/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06</th><tr data-revised-hash='46ba98020738896a690dfbc3f4eb914f901f6728'><td><a href='/date/2020-07-06T18:18:24/css-grid-1/'>18:18:24 PDT</a></td><td>2020-07-06 18:18:05 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Fix example. Fixes #4991</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/46ba98020738896a690dfbc3f4eb914f901f6728/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T18:18:24/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='dd1d91bc084e84935c03db7122889bf91badc9fa'><td><a href='/date/2020-07-06T18:17:22/css-grid-1/'>18:17:22 PDT</a></td><td>2020-07-06 18:16:53 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Typo. Fixes #4994</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dd1d91bc084e84935c03db7122889bf91badc9fa/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T18:17:22/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3576a6a379617c64e51538bc2266462d172d1f5b'><td><a href='/date/2020-07-06T16:43:23/css-grid-1/'>16:43:23 PDT</a></td><td>2020-07-06 16:42:59 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Tag change with &lt;wpt&gt;.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3576a6a379617c64e51538bc2266462d172d1f5b/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T16:43:23/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='c77867e07f541685036ef6649d71d0b1868f7f5a'><td><a href='/date/2020-07-06T16:16:16/css-grid-1/'>16:16:16 PDT</a></td><td>2020-07-06 16:15:49 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Clarify that you only look for baseline-aligned items that are aligned *to the correct baseline*. Fixes #5293.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c77867e07f541685036ef6649d71d0b1868f7f5a/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T16:16:16/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3bb616d4ef4516bdb76242dfb4b2caaddf8bbbe6'><td><a href='/date/2020-07-06T16:08:14/css-grid-1/'>16:08:14 PDT</a></td><td>2020-07-06 16:07:39 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Add the previous commit to the Changes list.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3bb616d4ef4516bdb76242dfb4b2caaddf8bbbe6/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T16:08:14/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='da012b56334e7120c473c7a255318bd0b21f7f63'><td><a href='/date/2020-07-06T15:17:34/css-grid-1/'>15:17:34 PDT</a></td><td>2020-07-06 15:17:15 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Add testcase link</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/da012b56334e7120c473c7a255318bd0b21f7f63/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T15:17:34/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='253b80369493833a6d85a6741cb2feaa622ec332'><td><a href='/date/2020-07-06T14:52:35/css-grid-1/'>14:52:35 PDT</a></td><td>2020-07-06 14:52:01 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Ensure that &#039;take from a baseline-aligned item&#039; and &#039;take from first item in any row&#039; conditions apply together, so if there&#039;s no items in the first row you&#039;ll still pay attention to the baseline-aligned items in the second row. Separately, rearrange the text so that these conditions read more clearly. Part of #3645.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/253b80369493833a6d85a6741cb2feaa622ec332/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T14:52:35/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='28f79e3ed6344d72b0055f70d853d8e89a6902a9'><td><a href='/date/2020-07-06T13:58:45/css-grid-1/'>13:58:45 PDT</a></td><td>2020-07-06 13:58:22 PDT</td><td><span>fantasai</span></td><td>[css-grid-1] Add testcase link</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/28f79e3ed6344d72b0055f70d853d8e89a6902a9/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T13:58:45/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b008c39afa1b12f258cdea9194bd9913af691d81'><td><a href='/date/2020-07-06T12:18:54/css-grid-1/'>12:18:54 PDT</a></td><td>2020-07-06 12:18:20 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid-1] Annotate some more changes with &lt;wpt&gt;.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b008c39afa1b12f258cdea9194bd9913af691d81/css-grid-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-06T12:18:54/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='733c06da4bda9c0794716c9f6703bb5fd6c4335a'><td><a href='/date/2020-04-16T11:08:57/css-grid-1/'>11:08:57 PDT</a></td><td>2020-04-16 11:01:36 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-grid] Verify that the reference to replaced elements really means that, and shouldn&#039;t apply to anything with an &#039;aspect-ratio&#039;. Also slightly rearrange/rewrite for clarity.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/733c06da4bda9c0794716c9f6703bb5fd6c4335a/css-grid-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-04-16T11:08:57/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-grid-1/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-grid-1/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 3</span><form accept-charset='utf-8' action='/history/page/2/css-grid-1/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/3/css-grid-1/' method='get'><input type='submit' value='Last'></form></div></div></body></html>

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