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='xr8ZV+lh6/g71ki4zBgd5NsRmknr2+g/K9sBy3b2tKw=' 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='xr8ZV+lh6/g71ki4zBgd5NsRmknr2+g/K9sBy3b2tKw=' 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='xr8ZV+lh6/g71ki4zBgd5NsRmknr2+g/K9sBy3b2tKw=' type='text/javascript'><!-- // --></script><script nonce='xr8ZV+lh6/g71ki4zBgd5NsRmknr2+g/K9sBy3b2tKw=' 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-regions-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-regions-1/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-regions-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 1</span><span class='icon button next disabled'></span><span class='icon button last disabled'></span></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-regions-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='7d98b938b94a85112595e759dc3cb9e26b641379'><td><a href='/date/2023-12-11T13:53:11/css-regions-1/'>13:53:11 PST</a></td><td>2023-08-01 14:53:44 PDT</td><td><span>Guillaume</span></td><td>[css-regions-1] Add whitespaces around combinator (#9132)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7d98b938b94a85112595e759dc3cb9e26b641379/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-regions-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='7d98b938b94a85112595e759dc3cb9e26b641379'><td><a href='/date/2023-12-11T13:53:11/css-regions-1/'>13:53:11 PST</a></td><td>2023-08-01 14:53:44 PDT</td><td><span>Guillaume</span></td><td>[css-regions-1] Add whitespaces around combinator (#9132)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7d98b938b94a85112595e759dc3cb9e26b641379/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-regions-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='7d98b938b94a85112595e759dc3cb9e26b641379'><td><a href='/date/2023-12-11T13:53:11/css-regions-1/'>13:53:11 PST</a></td><td>2023-08-01 14:53:44 PDT</td><td><span>Guillaume</span></td><td>[css-regions-1] Add whitespaces around combinator (#9132)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7d98b938b94a85112595e759dc3cb9e26b641379/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-regions-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'>2024-01-24</th><tr data-revised-hash='57e47329607f43274c48220c2efcaa110c30ba9d'><td><a href='/date/2024-01-24T06:56:24/css-regions-1/'>06:56:24 PST</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[editorial] Add separate Security and Privacy appendices to .bs specs that didn't have them, #207</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/57e47329607f43274c48220c2efcaa110c30ba9d/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-01-24T06:56:24/bikeshed/css-regions-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-regions-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 "Revert "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main"" This reverts commit 9d14c2393cfeca05c799d43444fe9c860074e80b. The commit that it was reverting was actually fine; it was a merge, but looked like it was bad because it had a large diff against the first parent but it had no diff against the second (which was the relevant one in a "linear history" of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-05-17T14:26:46/bikeshed/css-regions-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-regions-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 "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main" This reverts commit 442ca50fbfe14f5e163336a54844ba447d2bafa7, reversing changes made to d0337ce2a834e083954a3b090fd69ea918a0302a.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70d026dcb8e01b8e3b0898968180c45a2d0da901/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-05-17T13:52:15/bikeshed/css-regions-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-20</th><tr data-revised-hash='62f5961e3d5a5464154682058725898c8749d1a2'><td><a href='/date/2021-04-20T10:34:24/css-regions-1/'>10:34:24 PDT</a></td><td>2021-04-20 10:33:47 PDT</td><td><span title='Philip J?genstedt'>philip_j_genstedt</span></td><td>[css-regions] Avoid the use of Region as a return type (#6228) As an interface mixin, Region can't be used as a type per Web IDL: https://heycam.github.io/webidl/#idl-types Fixes https://github.com/w3c/csswg-drafts/issues/5519.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/62f5961e3d5a5464154682058725898c8749d1a2/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-04-20T10:34:24/bikeshed/css-regions-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='bf6cf5a36c6189853cc18e0e18432b041c733a34'><td><a href='/date/2021-04-16T11:17:03/css-regions-1/'>11:17:03 PDT</a></td><td>2021-04-16 11:16:45 PDT</td><td><span title='Philip J?genstedt'>philip_j_genstedt</span></td><td>[css-regions-1] Use maplike declaration for NamedFlowMap (#6208) The previously defined members are implicit in the maplike declaration: https://heycam.github.io/webidl/#es-maplike Fixes https://github.com/w3c/csswg-drafts/issues/6014.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bf6cf5a36c6189853cc18e0e18432b041c733a34/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-04-16T11:17:03/bikeshed/css-regions-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-21</th><tr data-revised-hash='d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38'><td><a href='/date/2021-02-21T23:27:15/css-regions-1/'>23:27:15 PST</a></td><td>2021-02-21 23:26:51 PST</td><td><span>fantasai</span></td><td>fix: typos across specs (#5992)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-02-21T23:27:15/bikeshed/css-regions-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-regions-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 "keywords" from Value Definitions section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6184bac8cb021eb858f4ee36559aad2fc9790aa3/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-09-18T15:42:57/bikeshed/css-regions-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-06-03</th><tr data-revised-hash='53437f507c0f2dbf30ccb04747ed2b36d8fbde0e'><td><a href='/date/2020-06-03T17:47:51/css-regions-1/'>17:47:51 PDT</a></td><td>2020-06-03 17:44:21 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Define "paged" and "continuous" media Closes #5019</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/53437f507c0f2dbf30ccb04747ed2b36d8fbde0e/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-06-03T17:47:51/bikeshed/css-regions-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-01-16</th><tr data-revised-hash='fbc565e83f1ec2cf382c43e7931c533dc77e07cf'><td><a href='/date/2020-01-16T16:21:27/css-regions-1/'>16:21:27 PST</a></td><td>2020-01-16 16:20:52 PST</td><td><span>fantasai</span></td><td>[meta] Align value definition reference across all specs. Use more obvious heading. Include link to definition syntax directly. #1397</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbc565e83f1ec2cf382c43e7931c533dc77e07cf/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-01-16T16:21:27/bikeshed/css-regions-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-01-05</th><tr data-revised-hash='7c5b72f0f08bffe3d2debaf7bbc81482cd053bd5'><td><a href='/date/2020-01-05T23:47:44/css-regions-1/'>23:47:44 PST</a></td><td>2020-01-05 23:47:24 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Fix typos in &lt; and &gt; html entities (#4644)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7c5b72f0f08bffe3d2debaf7bbc81482cd053bd5/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-01-05T23:47:44/bikeshed/css-regions-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'>2019-05-20</th><tr data-revised-hash='2f0f5a557304b52fc48166ad153d675beb97a9a2'><td><a href='/date/2019-05-20T03:15:21/css-regions-1/'>03:15:21 PDT</a></td><td>2019-05-10 16:40:07 PDT</td><td><span>ericwilligers</span></td><td>[css-regions] Consistent references to CSS3-BREAK Avoid the bikeshed warning: The biblio refs [[css-break-3]] and [[CSS3-BREAK]] are both aliases of the same base reference [[css-break-3]]. Please choose one name and use it consistently.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2f0f5a557304b52fc48166ad153d675beb97a9a2/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-05-20T03:15:21/bikeshed/css-regions-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'>2019-03-21</th><tr data-revised-hash='bcfe844a33caa291f749dd2499539c6043ffe621'><td><a href='/date/2019-03-21T08:07:39/css-regions-1/'>08:07:39 PDT</a></td><td>2019-03-21 08:07:26 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>Merge pull request #3727 from w3c/xfq/css-regions-1-changes [css-regions-1] Update Changes section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bcfe844a33caa291f749dd2499539c6043ffe621/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-03-21T08:07:39/bikeshed/css-regions-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'>2019-03-12</th><tr data-revised-hash='73495dc44ebad99bad9e58897916549e9069ab01'><td><a href='/date/2019-03-12T01:54:36/css-regions-1/'>01:54:36 PDT</a></td><td>2019-03-12 01:54:10 PDT</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td>[css-regions-1] Update Changes section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/73495dc44ebad99bad9e58897916549e9069ab01/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-03-12T01:54:36/bikeshed/css-regions-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'>2019-03-17</th><tr data-revised-hash='641e2b80079968b956fd6c52594c8576e95ccaff'><td><a href='/date/2019-03-17T15:46:52/css-regions-1/'>15:46:52 PDT</a></td><td>2019-03-17 12:51:23 PDT</td><td><span title='Philip J?genstedt'>philip_j_genstedt</span></td><td>[css-regions-1] Convert Region to a mixin (reprise) The actual `mixin` keyword was overlooked in https://github.com/w3c/csswg-drafts/pull/3643.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/641e2b80079968b956fd6c52594c8576e95ccaff/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-03-17T15:46:52/bikeshed/css-regions-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'>2019-03-16</th><tr data-revised-hash='bf6effb3ba6f38f5cf2d1b81f3f0eef40e42028c'><td><a href='/date/2019-03-16T15:53:20/css-regions-1/'>15:53:20 PDT</a></td><td>2019-02-11 05:05:02 PST</td><td><span title='Philip J?genstedt'>philip_j_genstedt</span></td><td>Convert Region to a mixin Following https://github.com/heycam/webidl/pull/433.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bf6effb3ba6f38f5cf2d1b81f3f0eef40e42028c/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-03-16T15:53:20/bikeshed/css-regions-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'>2018-11-07</th><tr data-revised-hash='6bb394ea0073906382734bc97222c12ade825919'><td><a href='/date/2018-11-07T00:39:18/css-regions-1/'>00:39:18 PST</a></td><td>2018-11-07 00:38:54 PST</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td>Update links to the tabindex attribute</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6bb394ea0073906382734bc97222c12ade825919/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2018-11-07T00:39:18/bikeshed/css-regions-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'>2018-11-26</th><tr data-revised-hash='32ed07e72137f5e4e703d793a24ba7b7cffa5fb1'><td><a href='/date/2018-11-26T13:04:02/css-regions-1/'>13:04:02 PST</a></td><td>2018-11-26 11:44:47 PST</td><td><span>ericwilligers</span></td><td>[css-regions] Skip inherit in flow-from grammar CSS-wide keywords such as inherit do not need to be included in the grammar for a specific property such as flow-from.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/32ed07e72137f5e4e703d793a24ba7b7cffa5fb1/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2018-11-26T13:04:02/bikeshed/css-regions-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'>2018-09-25</th><tr data-revised-hash='cc73e869e5e11fc8ef399cbaf183bba9b9059e90'><td><a href='/date/2018-09-25T19:35:59/css-regions-1/'>19:35:59 PDT</a></td><td>2018-09-25 02:36:59 PDT</td><td><span>fantasai</span></td><td>[css-regions-1] Add animation type lines. Add issue pointing at 'continue' property.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cc73e869e5e11fc8ef399cbaf183bba9b9059e90/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2018-09-25T19:35:59/bikeshed/css-regions-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'>2018-09-21</th><tr data-revised-hash='798743eb41962b22f7c618719814f056bc44d8bd'><td><a href='/date/2018-09-21T07:22:30/css-regions-1/'>07:22:30 PDT</a></td><td>2018-09-10 02:25:15 PDT</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td>Update refs to the box model Follow-up of #3078.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/798743eb41962b22f7c618719814f056bc44d8bd/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-09-21T07:22:30/bikeshed/css-regions-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'>2018-07-16</th><tr data-revised-hash='16a8b10a344bbe3cd10474987c009df215e10135'><td><a href='/date/2018-07-16T13:10:06/css-regions-1/'>13:10:06 PDT</a></td><td>2018-07-16 13:09:50 PDT</td><td><span title='Luke Bjerring'>luke_bjerring</span></td><td>Fix syntax error (#2925) Found while authoring https://github.com/web-platform-tests/wpt/pull/11979</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/16a8b10a344bbe3cd10474987c009df215e10135/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-07-16T13:10:06/bikeshed/css-regions-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'>2018-07-09</th><tr data-revised-hash='7bc539a42c9b06f675e3782f1ab2d0262e0fa9e7'><td><a href='/date/2018-07-09T23:26:30/css-regions-1/'>23:26:30 PDT</a></td><td>2018-07-05 19:29:25 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Drop the "Media:" entry from propdef tables Its meaning has never been defined properly, and it does not add useful information. This commit does not remove (correct) uses of Media:all, as these do have a meaning, and will be clarified in a later commit.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7bc539a42c9b06f675e3782f1ab2d0262e0fa9e7/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-07-09T23:26:30/bikeshed/css-regions-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'>2018-06-21</th><tr data-revised-hash='ea724a78f103e26cb7a4a2c9f6f90e9e83c7752e'><td><a href='/date/2018-06-21T12:27:34/css-regions-1/'>12:27:34 PDT</a></td><td>2018-06-21 12:25:54 PDT</td><td><span>fantasai</span></td><td>Switch css21 cross-references to css2</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ea724a78f103e26cb7a4a2c9f6f90e9e83c7752e/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-06-21T12:27:34/bikeshed/css-regions-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'>2018-06-08</th><tr data-revised-hash='f76ae080ea8e6bcfb0d9dba26bbe03b4732c6616'><td><a href='/date/2018-06-08T15:29:43/css-regions-1/'>15:29:43 PDT</a></td><td>2018-06-08 15:29:23 PDT</td><td><span>fantasai</span></td><td>[css-multicol-1][meta] Update other specs that refer to multi-column elements to refer to multi-column containers. Completes fix for #1965</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f76ae080ea8e6bcfb0d9dba26bbe03b4732c6616/css-regions-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-06-08T15:29:43/bikeshed/css-regions-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'>2018-02-23</th><tr data-revised-hash='d49acaaf8eee4b6ba2ffcb67e2b4137cb9662729'><td><a href='/date/2018-02-23T13:30:26/css-regions-1/'>13:30:26 PST</a></td><td>2018-02-21 21:05:15 PST</td><td><span>ericwilligers</span></td><td>Add [Exposed=Window] to interfaces From #2342: WebIDL now defines that interfaces include the Exposed extended attribute even in the case where it is only exposed to Window. The following interfaces previously omitted the Exposed extended attribute: NamedFlow, NamedFlowMap, CSSPseudoElement, CSSPseudoElementList, CSSKeyframeEffectReadOnly, TransitionEvent</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d49acaaf8eee4b6ba2ffcb67e2b4137cb9662729/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-02-23T13:30:26/bikeshed/css-regions-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'>2018-02-15</th><tr data-revised-hash='28516ede564440383f92e442e0d69da2ae8fd58a'><td><a href='/date/2018-02-15T17:56:47/css-regions-1/'>17:56:47 PST</a></td><td>2018-02-15 17:55:33 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-regions-1] Add explicit reference to css-contain</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/28516ede564440383f92e442e0d69da2ae8fd58a/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-02-15T17:56:47/bikeshed/css-regions-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'>2018-02-14</th><tr data-revised-hash='fb50b67932990b2050d6eece9b742e76603fc153'><td><a href='/date/2018-02-14T22:30:16/css-regions-1/'>22:30:16 PST</a></td><td>2018-02-14 22:28:51 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-regions-1] Fix cross reference bikeshed error An update to a newer version of HTML is probably desirable, but this is the minimal change that will fix the cross-ref error.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fb50b67932990b2050d6eece9b742e76603fc153/css-regions-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-02-14T22:30:16/bikeshed/css-regions-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'>2017-11-09</th><tr data-revised-hash='22c9edc2d68b3ed8cfe65a52958ece5d2403284f'><td><a href='/date/2017-11-09T16:14:17/css-regions-1/'>16:14:17 PST</a></td><td>2017-11-09 16:12:58 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Add w3cid metadata for all editors. I got the uids from the "Edit status" links in https://www.w3.org/2000/09/dbwg/details?group=32061 and made the actual changes with a python script.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/22c9edc2d68b3ed8cfe65a52958ece5d2403284f/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2017-11-09T16:14:17/bikeshed/css-regions-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'>2017-10-25</th><tr data-revised-hash='b5c171339e19b7213ff3f99edfae74fb0373fef1'><td><a href='/date/2017-10-25T17:28:53/css-regions-1/'>17:28:53 PDT</a></td><td>2017-10-25 16:46:02 PDT</td><td><span title='Tantek Celik'>tantek_celik</span></td><td>Use Title: meta instead of explicit <h1></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b5c171339e19b7213ff3f99edfae74fb0373fef1/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2017-10-25T17:28:53/bikeshed/css-regions-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'>2017-10-11</th><tr data-revised-hash='bed56e3512405c2bf53f66f5aa0068bf14313fbd'><td><a href='/date/2017-10-11T14:48:05/css-regions-1/'>14:48:05 PDT</a></td><td>2017-10-11 14:47:55 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>THE GREAT NUMBERING - put all specs into numbered directories, per WG resolution, and use Shepherd to set which level is currently shown for the unleveled url.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bed56e3512405c2bf53f66f5aa0068bf14313fbd/css-regions-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2017-10-11T14:48:05/bikeshed/css-regions-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-regions-1/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-regions-1/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 1</span><form accept-charset='utf-8' action='/history/page/2/css-regions-1/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/css-regions-1/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>