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='GlVgdj1MreoIKP5BhyPNug6QHtBQvaHNfrGrju/Wnqk=' 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='GlVgdj1MreoIKP5BhyPNug6QHtBQvaHNfrGrju/Wnqk=' 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='GlVgdj1MreoIKP5BhyPNug6QHtBQvaHNfrGrju/Wnqk=' type='text/javascript'><!-- // --></script><script nonce='GlVgdj1MreoIKP5BhyPNug6QHtBQvaHNfrGrju/Wnqk=' 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-shapes-2\/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-shapes-2/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-shapes-2/'>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-shapes-2/Overview.html:</h3><table class='list tbody' id='history_table'><thead><tr><th>Uploaded</th><th>Revised</th><th>By</th><th>Comment</th><th></th></tr></thead><tbody><th colspan='5'>2024-10-22</th><tr data-revised-hash='72984fe6e79d1e7e025f208aa4cc38c3257ad696'><td><a href='/date/2024-10-22T14:26:58/css-shapes-2/'>14:26:58 PDT</a></td><td>2024-10-22 14:26:36 PDT</td><td><span title='Noam Rosenthal'>noamr</span></td><td>[css-shapes-2] Clarify shape/path interpolation (#10984) * [css-shapes-2] Clarify shape/path interpolation Match the first moveTo of the `path()` with the &quot;from&quot; of the `shape()` This is guaranteed to work since `path()` always starts with an M or m. See resolution: https://github.com/w3c/csswg-drafts/issues/10740#issuecomment-2379740446 Closes #10740 * s/value/command</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/72984fe6e79d1e7e025f208aa4cc38c3257ad696/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-10-22T14:26:58/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-10-02</th><tr data-revised-hash='06fc020d0cddcf7510530b321cec3889ab5b2bb5'><td><a href='/date/2024-10-02T12:54:44/css-shapes-2/'>12:54:44 PDT</a></td><td>2024-10-02 12:51:04 PDT</td><td><span title='Noam Rosenthal'>noamr</span></td><td>[css-shapes-2][css-borders-4] Add myself as editor</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/06fc020d0cddcf7510530b321cec3889ab5b2bb5/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-10-02T12:54:44/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-09-11</th><tr data-revised-hash='8a913366634faae2c10099a88a9076872862030b'><td><a href='/date/2024-09-11T14:49:01/css-shapes-2/'>14:49:01 PDT</a></td><td>2024-09-11 14:48:36 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td>include all basic shapes in property prose for #9728</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8a913366634faae2c10099a88a9076872862030b/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-09-11T14:49:01/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-08-05</th><tr data-revised-hash='e05c648f807cbfb3f7229847d3cc7330f871adbb'><td><a href='/date/2024-08-05T12:01:52/css-shapes-2/'>12:01:52 PDT</a></td><td>2024-08-01 04:37:22 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-shapes-2] Fix spurious / in &lt;img&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e05c648f807cbfb3f7229847d3cc7330f871adbb/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-08-05T12:01:52/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-31</th><tr data-revised-hash='0c8bf9710b22465615145557fee120dbac1f5b6d'><td><a href='/date/2024-07-31T10:01:03/css-shapes-2/'>10:01:03 PDT</a></td><td>2024-07-31 10:00:41 PDT</td><td><span title='Noam Rosenthal'>noamr</span></td><td>[css-shapes-2]: `shape()`: using instead of via, allow any order in arcs/curves (#9797) Closes #5841</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0c8bf9710b22465615145557fee120dbac1f5b6d/css-shapes-2/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-07-31T10:01:03/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-12-11</th><tr data-revised-hash='bd5dafe57d28a1914814d53c315c09eaacdbdc39'><td><a href='/date/2023-12-11T13:53:11/css-shapes-2/'>13:53:11 PST</a></td><td>2023-11-08 05:01:51 PST</td><td><span>Guillaume</span></td><td>[css-shapes-2] Make shape-padding consistent with shape-margin - also accept percentage - enforce non-negative values</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bd5dafe57d28a1914814d53c315c09eaacdbdc39/css-shapes-2/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='bd5dafe57d28a1914814d53c315c09eaacdbdc39'><td><a href='/date/2023-12-11T13:53:11/css-shapes-2/'>13:53:11 PST</a></td><td>2023-11-08 05:01:51 PST</td><td><span>Guillaume</span></td><td>[css-shapes-2] Make shape-padding consistent with shape-margin - also accept percentage - enforce non-negative values</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bd5dafe57d28a1914814d53c315c09eaacdbdc39/css-shapes-2/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='bd5dafe57d28a1914814d53c315c09eaacdbdc39'><td><a href='/date/2023-12-11T13:53:11/css-shapes-2/'>13:53:11 PST</a></td><td>2023-11-08 05:01:51 PST</td><td><span>Guillaume</span></td><td>[css-shapes-2] Make shape-padding consistent with shape-margin - also accept percentage - enforce non-negative values</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bd5dafe57d28a1914814d53c315c09eaacdbdc39/css-shapes-2/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-12-11T13:53:11/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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&#039;t have them, #207</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/57e47329607f43274c48220c2efcaa110c30ba9d/css-shapes-2/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-01-24T06:56:24/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07</th><tr data-revised-hash='31a3e783ea6ad525d649db41b3b02f37d1f27b6f'><td><a href='/date/2022-03-07T11:33:20/css-shapes-2/'>11:33:20 PST</a></td><td>2022-03-07 11:32:34 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-shapes-2] Add the &quot;rotate&quot; keyword to shape() (#7105)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/31a3e783ea6ad525d649db41b3b02f37d1f27b6f/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-07T11:33:20/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-11-03</th><tr data-revised-hash='77044d9e98e649fe9d6ef9acbf1a9119f6d7b20e'><td><a href='/date/2021-11-03T11:06:51/css-shapes-2/'>11:06:51 PDT</a></td><td>2021-10-12 05:17:22 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>Shapes, images, colors</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/77044d9e98e649fe9d6ef9acbf1a9119f6d7b20e/css-shapes-2/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-11-03T11:06:51/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-14</th><tr data-revised-hash='ad6267ed63443f370f7d8204e0c920d69d57b862'><td><a href='/date/2021-07-14T23:59:32/css-shapes-2/'>23:59:32 PDT</a></td><td>2021-07-14 23:59:14 PDT</td><td><span title='Cameron McCormack'>heycam</span></td><td>[css-shapes-2] Fix fill-rule reference</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ad6267ed63443f370f7d8204e0c920d69d57b862/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-07-14T23:59:32/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-21T23:27:15/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-08</th><tr data-revised-hash='f0f47dba5bc1cde121136555d302b9eb9dd07e9f'><td><a href='/date/2021-01-08T16:16:57/css-shapes-2/'>16:16:57 PST</a></td><td>2021-01-08 16:16:36 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-shapes-2] Add a lightly-modified version of the SVG four-arcs diagram.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f0f47dba5bc1cde121136555d302b9eb9dd07e9f/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-01-08T16:16:57/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f8ad05752c3c15f2a8a6f5982eba8b5f0e92bae2'><td><a href='/date/2021-01-08T15:55:22/css-shapes-2/'>15:55:22 PST</a></td><td>2021-01-08 15:55:03 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-shapes-2][editorial] Fix markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f8ad05752c3c15f2a8a6f5982eba8b5f0e92bae2/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-01-08T15:55:22/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='c34bc87326ab58fa55612e143972e6fc1865aad4'><td><a href='/date/2021-01-08T15:50:44/css-shapes-2/'>15:50:44 PST</a></td><td>2021-01-08 15:47:13 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-shapes-2] Almost completely an editorial pass over the spec. Removed the x/y keywords from shape(line...), and added shape()/path() interpolation rules.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c34bc87326ab58fa55612e143972e6fc1865aad4/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-01-08T15:50:44/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06</th><tr data-revised-hash='970ffd4058e75256d3fbd88b829c87d4827a4933'><td><a href='/date/2021-01-06T16:26:48/css-shapes-2/'>16:26:48 PST</a></td><td>2021-01-06 16:26:29 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-shapes-2] Add a shape() syntax, which accepts shape-segments equivalent to SVG path (#5711)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/970ffd4058e75256d3fbd88b829c87d4827a4933/css-shapes-2/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-01-06T16:26:48/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-09-18T15:42:57/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-05-05</th><tr data-revised-hash='1605ce019a21e462bb7bb3124155d3f923cac506'><td><a href='/date/2020-05-05T15:17:22/css-shapes-2/'>15:17:22 PDT</a></td><td>2020-05-05 15:14:30 PDT</td><td><span>fantasai</span></td><td>[css-shapes-2] Fix markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1605ce019a21e462bb7bb3124155d3f923cac506/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-05-05T15:17:22/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-01-16T16:21:27/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-01-11</th><tr data-revised-hash='8a9d9dc3eadfd8019fe3ea7d11eb0d91a1cba6c2'><td><a href='/date/2019-01-11T15:51:57/css-shapes-2/'>15:51:57 PST</a></td><td>2019-01-11 15:51:31 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>Correct the dfn markup And remove some extraneous end tags while I&#039;m here.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8a9d9dc3eadfd8019fe3ea7d11eb0d91a1cba6c2/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-01-11T15:51:57/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-12-09</th><tr data-revised-hash='295c4228afc1c7ba28c5dfb388480c8b008f742a'><td><a href='/date/2018-12-09T21:14:23/css-shapes-2/'>21:14:23 PST</a></td><td>2018-12-09 21:13:58 PST</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td>Remove some references to Bugzilla</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/295c4228afc1c7ba28c5dfb388480c8b008f742a/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-12-09T21:14:23/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-14</th><tr data-revised-hash='535d1a8cdbb10cfec2dea816a3539728a9160322'><td><a href='/date/2018-11-14T18:29:29/css-shapes-2/'>18:29:29 PST</a></td><td>2018-11-14 18:29:17 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-fonts][css-multicol][css-scroll-anchoring][css-scrollbars][css-shapes][css-size-adjust][css-transforms][css-ui] Update Computed Value and Animation lines to new format. (#3198)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/535d1a8cdbb10cfec2dea816a3539728a9160322/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-11-14T18:29:29/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-09-21T07:22:30/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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 &quot;Media:&quot; 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-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-07-09T23:26:30/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-27</th><tr data-revised-hash='582485d0eb06ac85dd134c525ab87bb0a6989fc8'><td><a href='/date/2018-06-27T07:04:02/css-shapes-2/'>07:04:02 PDT</a></td><td>2018-06-27 06:02:19 PDT</td><td><span>ericwilligers</span></td><td>[css-shapes] Refer css-shapes-1 for shape-margin css-shapes-2 refers to css-shapes-1 for shape-margin. css-shapes-2 (like css-shapes-1) refers to css-masking-1 for &#039;nonzero&#039; and &#039;evenodd&#039;.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/582485d0eb06ac85dd134c525ab87bb0a6989fc8/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-06-27T07:04:02/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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-shapes-2/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-06-21T12:27:34/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/'>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 &quot;Edit status&quot; 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-shapes-2/Overview.bs'></a><a class='bikeshed link-error' href='/date/2017-11-09T16:14:17/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='a99b846e7764b1842f0a9874bc17399bbf2c47a8'><td><a href='/date/2017-10-25T17:47:30/css-shapes-2/'>17:47:30 PDT</a></td><td>2017-10-25 16:47:04 PDT</td><td><span title='Tantek Celik'>tantek_celik</span></td><td>Use Title: meta instead of explicit &lt;h1&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a99b846e7764b1842f0a9874bc17399bbf2c47a8/css-shapes-2/Overview.bs'></a><a class='bikeshed link-error' href='/date/2017-10-25T17:47:30/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2016-02-01</th><tr data-revised-hash='255258410d1b4bec423289e86bf99ca76de5cbbc'><td><a href='/date/2016-02-01T00:19:57/css-shapes-2/'>00:19:57 PST</a></td><td>2016-02-01 00:19:13 PST</td><td><span title='Peter Linss'>plinss</span></td><td>change w3.org/TR/ urls to https</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/255258410d1b4bec423289e86bf99ca76de5cbbc/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-02-01T00:19:57/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2016-01-31</th><tr data-revised-hash='5be73fbc8592f12f08c86b263da6bd608c22a5b3'><td><a href='/date/2016-01-31T23:43:12/css-shapes-2/'>23:43:12 PST</a></td><td>2016-01-31 23:42:31 PST</td><td><span title='Peter Linss'>plinss</span></td><td>change //dev.w3.org/csswg/ urls to //drafts.csswg.org/</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5be73fbc8592f12f08c86b263da6bd608c22a5b3/css-shapes-2/Overview.bs'></a><a class='bikeshed warning' href='/date/2016-01-31T23:43:12/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2015-08-27</th><tr data-revised-hash='9567d944c0e005a1d34750af9b25149cdfe18107'><td><a href='/date/2015-08-27T10:14:06/css-shapes-2/'>10:14:06 PDT</a></td><td>2015-08-27 10:13:48 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] add display to shape-inside</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9567d944c0e005a1d34750af9b25149cdfe18107/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-08-27T10:14:06/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='d0dfb9970a88372a46eedd2aa2e9f778460d36bb'><td><a href='/date/2015-08-27T09:25:49/css-shapes-2/'>09:25:49 PDT</a></td><td>2015-08-27 09:25:10 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] remove issue marker</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d0dfb9970a88372a46eedd2aa2e9f778460d36bb/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-08-27T09:25:49/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b766fa9c039f59fc26e8877ee133ed568f0c8474'><td><a href='/date/2015-08-27T09:22:46/css-shapes-2/'>09:22:46 PDT</a></td><td>2015-08-27 09:22:30 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] add path() to diffed section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b766fa9c039f59fc26e8877ee133ed568f0c8474/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-08-27T09:22:46/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2015-08-26</th><tr data-revised-hash='44637cd4e803276a000b935aeb11ba276fcda2ce'><td><a href='/date/2015-08-26T08:54:59/css-shapes-2/'>08:54:59 PDT</a></td><td>2015-08-26 08:54:43 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] improve overflow explanation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/44637cd4e803276a000b935aeb11ba276fcda2ce/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-08-26T08:54:59/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='9cc4b7888473aa11be5680c23364f242d1bc6a41'><td><a href='/date/2015-08-26T08:03:53/css-shapes-2/'>08:03:53 PDT</a></td><td>2015-08-26 08:03:34 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] actually define outside-shape value</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9cc4b7888473aa11be5680c23364f242d1bc6a41/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-08-26T08:03:53/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2015-05-29</th><tr data-revised-hash='0f4bf02e8b705d19b9215c7c91cc69eb7be79e38'><td><a href='/date/2015-05-29T23:49:29/css-shapes-2/'>23:49:29 PDT</a></td><td>2015-05-29 23:46:19 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>Add &#039;Work Status&#039; metadata to all Bikeshed source files. Some files also accidentally got whitespace fixes, whoops.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0f4bf02e8b705d19b9215c7c91cc69eb7be79e38/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-05-29T23:49:29/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2015-02-11</th><tr data-revised-hash='7509e614b88912e534216254284301c5a3f60a38'><td><a href='/date/2015-02-11T06:47:52/css-shapes-2/'>06:47:52 PST</a></td><td>2015-02-11 06:47:28 PST</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] add Rossen as editor</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7509e614b88912e534216254284301c5a3f60a38/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-02-11T06:47:52/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2015-01-23</th><tr data-revised-hash='e4300ac066446aba1ac2c856b3b7fbc141986eb0'><td><a href='/date/2015-01-23T23:57:09/css-shapes-2/'>23:57:09 PST</a></td><td>2015-01-23 23:58:02 PST</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] bikesheddifying</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e4300ac066446aba1ac2c856b3b7fbc141986eb0/css-shapes-2/Overview.bs'></a><a class='bikeshed success' href='/date/2015-01-23T23:57:09/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2014-12-30</th><tr data-revised-hash='e5e858c0b5607513b5118bd33bfb1784c6b2fa50'><td><a href='/date/2014-12-30T18:33:30/css-shapes-2/'>18:33:30 PST</a></td><td>2014-03-17 23:08:18 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td>[css-shapes-2] add notes on level 2 features</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e5e858c0b5607513b5118bd33bfb1784c6b2fa50/css-shapes-2/Overview.html'></a><a class='html committed' href='/date/2014-12-30T18:33:30/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-shapes-2/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-shapes-2/' 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-shapes-2/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/css-shapes-2/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>

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