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='loUp6GbJXIqKmUVDPGVLVP0habys5h2W9U7v324IN6E=' 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='loUp6GbJXIqKmUVDPGVLVP0habys5h2W9U7v324IN6E=' 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='loUp6GbJXIqKmUVDPGVLVP0habys5h2W9U7v324IN6E=' type='text/javascript'><!-- // --></script><script nonce='loUp6GbJXIqKmUVDPGVLVP0habys5h2W9U7v324IN6E=' 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-text-3\/Overview.bs";var gPage=1;var gUpdateStream=null;function updateTBody(tbody,data){return system.iterateElementChildren(tbody,function(tr,rowIndex){if(tr.getAttribute('data-revised-hash')==data.revised_changeset.hash){var icon=tr.lastElementChild.lastElementChild;icon.className=data.type+' '+data.status;return true;}});}function updateTable(table,data){return system.iterateElementChildren(table,function(tbody,tbodyIndex){if('TBODY'==tbody.tagName){return updateTBody(tbody,data);}});}function updateDraft(message,data){if('revised'==data.revision_status){var historyTable=document.getElementById('history_table');if(!updateTable(historyTable,data)){if((1==gPage)&&(data.source_path.split('/').length<=2)){window.location.reload();}}}}function startStream(){gUpdateStream=new Stream(gDraftAPIURI,{'repo':gRepo,'date':gDate,'branch':gBranch,'head':gHead,'path':gRepoPath},updateDraft);gUpdateStream.persist=true;}function setupPage(){startStream();}system.addLoadEvent(setupPage); // --></script></head><body><div class='header'><div class='logo'><a href='http://www.w3.org/' rel='home'><img alt='W3C' src='/core/img/logo-w3c-screen-sm.png'></a></div><div class='login' id='login'><div><a href='/login/return/history/css-text-3/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-text-3/'>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 4</span><a class='icon button next' href='/history/page/2/css-text-3/'></a><a class='icon button last' href='/history/page/4/css-text-3/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-text-3/Overview.html:</h3><table class='list tbody' id='history_table'><thead><tr><th>Uploaded</th><th>Revised</th><th>By</th><th>Comment</th><th></th></tr></thead><tbody><th colspan='5'>2024-10-04</th><tr data-revised-hash='e57c4f3be2d24de37005716c5a2cfb192e85d451'><td><a href='/date/2024-10-04T10:46:35/css-text-3/'>10:46:35 PDT</a></td><td>2024-10-03 14:02:16 PDT</td><td><span>fantasai</span></td><td>Publication fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e57c4f3be2d24de37005716c5a2cfb192e85d451/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-10-04T10:46:35/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-10-03</th><tr data-revised-hash='e57c4f3be2d24de37005716c5a2cfb192e85d451'><td><a href='/date/2024-10-03T16:40:50/css-text-3/'>16:40:50 PDT</a></td><td>2024-10-03 14:02:16 PDT</td><td><span>fantasai</span></td><td>Publication fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e57c4f3be2d24de37005716c5a2cfb192e85d451/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-10-03T16:40:50/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-07-31</th><tr data-revised-hash='4f94baa0b7afd42dc7c9c92122e51d12eae80234'><td><a href='/date/2024-07-31T05:44:38/css-text-3/'>05:44:38 PDT</a></td><td>2024-07-31 05:43:54 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text] Phrasing clarification See https://github.com/w3c/csswg-drafts/issues/10531</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4f94baa0b7afd42dc7c9c92122e51d12eae80234/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-07-31T05:44:38/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-05-27</th><tr data-revised-hash='63635580ab8e2795efbfc330920c0e74ae95de2a'><td><a href='/date/2024-05-27T04:57:43/css-text-3/'>04:57:43 PDT</a></td><td>2024-05-27 04:57:00 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text] Update test coverage</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/63635580ab8e2795efbfc330920c0e74ae95de2a/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-05-27T04:57:43/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='867b148ef83f436a85147bb068753e5f0fe01749'><td><a href='/date/2024-05-27T01:15:46/css-text-3/'>01:15:46 PDT</a></td><td>2024-05-27 00:41:03 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Disambiguate line breaks around atomic inlines at element boundaries Fixes https://github.com/w3c/csswg-drafts/issues/9964</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/867b148ef83f436a85147bb068753e5f0fe01749/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-05-27T01:15:46/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-05-15</th><tr data-revised-hash='c4154d0cb6f3007fa8405507ec2cf4950af31424'><td><a href='/date/2024-05-15T15:37:34/css-text-3/'>15:37:34 PDT</a></td><td>2024-05-15 15:36:58 PDT</td><td><span>fantasai</span></td><td>[css-text-3][css-text-4] Fix computed value of text-align-last #7331</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c4154d0cb6f3007fa8405507ec2cf4950af31424/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-05-15T15:37:34/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='349204bbfc671c37346af2ab6e1b9df8bdbc777d'><td><a href='/date/2024-05-15T12:55:03/css-text-3/'>12:55:03 PDT</a></td><td>2024-05-15 12:54:10 PDT</td><td><span>fantasai</span></td><td>[css-text-3][css-text-4] Add Hanifi Rohingya to Appendix D #9984</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/349204bbfc671c37346af2ab6e1b9df8bdbc777d/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-05-15T12:55:03/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-18</th><tr data-revised-hash='3405c69f8da9fcff81c1d29bb77b5c7c03637473'><td><a href='/date/2024-02-18T23:18:49/css-text-3/'>23:18:49 PST</a></td><td>2024-02-18 23:18:14 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update test coverage</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3405c69f8da9fcff81c1d29bb77b5c7c03637473/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2024-02-18T23:18:49/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-12-11</th><tr data-revised-hash='9a6fad8a6be88d62973a508ba2fa69da2a9895c0'><td><a href='/date/2023-12-11T13:53:11/css-text-3/'>13:53:11 PST</a></td><td>2023-10-20 00:36:29 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Test Coverage update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9a6fad8a6be88d62973a508ba2fa69da2a9895c0/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-12-11T13:53:11/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='9a6fad8a6be88d62973a508ba2fa69da2a9895c0'><td><a href='/date/2023-12-11T13:53:11/css-text-3/'>13:53:11 PST</a></td><td>2023-10-20 00:36:29 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Test Coverage update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9a6fad8a6be88d62973a508ba2fa69da2a9895c0/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-12-11T13:53:11/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='9a6fad8a6be88d62973a508ba2fa69da2a9895c0'><td><a href='/date/2023-12-11T13:53:11/css-text-3/'>13:53:11 PST</a></td><td>2023-10-20 00:36:29 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Test Coverage update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9a6fad8a6be88d62973a508ba2fa69da2a9895c0/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-12-11T13:53:11/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-07-21</th><tr data-revised-hash='18608d7142c649cbe97e0d9b345286ef20771f36'><td><a href='/date/2023-07-21T08:55:41/css-text-3/'>08:55:41 PDT</a></td><td>2023-07-11 14:54:06 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[various][editorial] Remove a handful of unnecessary/incorrect genderings.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/18608d7142c649cbe97e0d9b345286ef20771f36/css-text-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2023-07-21T08:55:41/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-05-07</th><tr data-revised-hash='89fa597abd92d3844f3f3ed7fdf6c08c2c9f2065'><td><a href='/date/2023-05-07T21:39:40/css-text-3/'>21:39:40 PDT</a></td><td>2023-04-21 22:45:08 PDT</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td>[css-text] Editorial fix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/89fa597abd92d3844f3f3ed7fdf6c08c2c9f2065/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-05-07T21:39:40/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-02-13</th><tr data-revised-hash='92f183646676836de5f70cc0ad5f13cbcc852654'><td><a href='/date/2023-02-13T15:10:58/css-text-3/'>15:10:58 PST</a></td><td>2023-02-13 13:27:55 PST</td><td><span>fantasai</span></td><td>[css-text-3] Update Changes list</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/92f183646676836de5f70cc0ad5f13cbcc852654/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-13T15:10:58/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='152cd44687849316067d99ba0cc284d793c478c2'><td><a href='/date/2023-02-13T13:25:41/css-text-3/'>13:25:41 PST</a></td><td>2023-01-11 09:17:48 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Strengthen language about conformant use of text-transform As per https://github.com/w3c/csswg-drafts/issues/8279</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/152cd44687849316067d99ba0cc284d793c478c2/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-02-13T13:25:41/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-01-26</th><tr data-revised-hash='1020a28a18c16fb504eaf94b7181a7ee09c07231'><td><a href='/date/2023-01-26T21:40:59/css-text-3/'>21:40:59 PST</a></td><td>2023-01-26 21:40:28 PST</td><td><span>fantasai</span></td><td>[css-text-3] typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1020a28a18c16fb504eaf94b7181a7ee09c07231/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-26T21:40:59/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-01-15</th><tr data-revised-hash='9e081da176ef05710d3a750bfebd3836c8e8c525'><td><a href='/date/2023-01-15T00:25:25/css-text-3/'>00:25:25 PST</a></td><td>2023-01-15 00:24:15 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Remove redundant test information</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9e081da176ef05710d3a750bfebd3836c8e8c525/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-15T00:25:25/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='007a078aba843bbc22794a66449be0fbb137f7a4'><td><a href='/date/2023-01-15T00:23:32/css-text-3/'>00:23:32 PST</a></td><td>2023-01-15 00:22:18 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Drop unnecessary bikeshed directives</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/007a078aba843bbc22794a66449be0fbb137f7a4/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2023-01-15T00:23:32/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-01-11</th><tr data-revised-hash='b1424042992627e6ef9d0a6ecbf5ddae87d3b2c0'><td><a href='/date/2023-01-11T09:38:48/css-text-3/'>09:38:48 PST</a></td><td>2023-01-11 09:37:36 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update test coverage</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b1424042992627e6ef9d0a6ecbf5ddae87d3b2c0/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-11T09:38:48/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-12-30</th><tr data-revised-hash='b1cd70ef1fd40e3d15df270997bc7622e47facb6'><td><a href='/date/2022-12-30T06:01:55/css-text-3/'>06:01:55 PST</a></td><td>2022-12-29 23:46:20 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Test coverage update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b1cd70ef1fd40e3d15df270997bc7622e47facb6/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-30T06:01:55/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-12-29</th><tr data-revised-hash='1cb4e726f5461a3924a57978d66c42dc448a9649'><td><a href='/date/2022-12-29T05:19:25/css-text-3/'>05:19:25 PST</a></td><td>2022-12-29 05:18:33 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update test coverage</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1cb4e726f5461a3924a57978d66c42dc448a9649/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-29T05:19:25/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='beb62e48886da14656d6b8358ab0003d615d3eef'><td><a href='/date/2022-12-29T01:59:49/css-text-3/'>01:59:49 PST</a></td><td>2022-12-29 00:00:36 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Test coverage info</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/beb62e48886da14656d6b8358ab0003d615d3eef/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-29T01:59:49/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-12-28</th><tr data-revised-hash='696e1fd192fcb0ff6a5dae05d59b279a4c0f2a18'><td><a href='/date/2022-12-28T23:50:59/css-text-3/'>23:50:59 PST</a></td><td>2022-12-28 23:49:55 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Move test information to the correct half of a split paragrah</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/696e1fd192fcb0ff6a5dae05d59b279a4c0f2a18/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-28T23:50:59/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='23f8c6573469b91a99551e06697e3bf3a796f345'><td><a href='/date/2022-12-28T22:49:12/css-text-3/'>22:49:12 PST</a></td><td>2022-12-28 22:48:33 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Separate privacy and security sections</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/23f8c6573469b91a99551e06697e3bf3a796f345/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-28T22:49:12/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='4dc5959687723cb19f9f3490a12f07de35ee7e81'><td><a href='/date/2022-12-28T22:47:08/css-text-3/'>22:47:08 PST</a></td><td>2022-12-28 22:46:26 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update information on test coverage</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4dc5959687723cb19f9f3490a12f07de35ee7e81/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-28T22:47:08/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-12-27</th><tr data-revised-hash='4c51d66420a3041bcfb3e9fac849142e8394487e'><td><a href='/date/2022-12-27T18:59:59/css-text-3/'>18:59:59 PST</a></td><td>2022-12-27 18:58:45 PST</td><td><span>fantasai</span></td><td>[css-text-3] Allow distribute to be a legacy value alias #7322 For some engines this is easier; for some it&#039;s harder. Spec allows either, since it&#039;s a compat alias and it doesn&#039;t matter.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4c51d66420a3041bcfb3e9fac849142e8394487e/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-27T18:59:59/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='f96685d0da012c75380d5fc04910f7562318f9ee'><td><a href='/date/2022-12-27T18:50:39/css-text-3/'>18:50:39 PST</a></td><td>2022-12-27 18:49:44 PST</td><td><span>fantasai</span></td><td>[css-text-3][css-text-4] Compute match-parent to start on the root for implementation simplicity. #6542</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f96685d0da012c75380d5fc04910f7562318f9ee/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-27T18:50:39/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='460d0ab377b52998ddd7ec0956f3715c43b65d0f'><td><a href='/date/2022-12-27T18:25:18/css-text-3/'>18:25:18 PST</a></td><td>2022-12-27 18:23:12 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text] Fix markup Follow-up on the fix for #5973</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/460d0ab377b52998ddd7ec0956f3715c43b65d0f/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-27T18:25:18/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='6ca76e59a80d9bcec9b95b069e6975cb563ca3d6'><td><a href='/date/2022-12-27T18:19:32/css-text-3/'>18:19:32 PST</a></td><td>2022-12-27 18:19:03 PST</td><td><span>fantasai</span></td><td>[css-text-3][css-text-4] Language-specific rules apply to explicit hyphenation opportunities, too. #5973</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6ca76e59a80d9bcec9b95b069e6975cb563ca3d6/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-27T18:19:32/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='b290b85bf64962a5b7ac2e51763cc41dd9416236'><td><a href='/date/2022-12-27T18:04:07/css-text-3/'>18:04:07 PST</a></td><td>2022-12-27 18:01:13 PST</td><td><span>fantasai</span></td><td>[css-text-3] Add table of examples from differanguages #5973</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b290b85bf64962a5b7ac2e51763cc41dd9416236/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-27T18:04:07/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='86c3f2f0feaefc0d1798fc756f9945d8e472a82a'><td><a href='/date/2022-12-27T18:00:08/css-text-3/'>18:00:08 PST</a></td><td>2022-12-27 17:56:47 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text] Remove reference to deleted text</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/86c3f2f0feaefc0d1798fc756f9945d8e472a82a/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-12-27T18:00:08/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-09-09</th><tr data-revised-hash='57e14082f23c5221d68ac325c7fe8b6bd12c7b2b'><td><a href='/date/2022-09-09T15:42:26/css-text-3/'>15:42:26 PDT</a></td><td>2022-09-09 15:42:08 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-text-3][css-text-4] Fix grammar and have better/more consistent wording in ??4.1.2 (#7719)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/57e14082f23c5221d68ac325c7fe8b6bd12c7b2b/css-text-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-09-09T15:42:26/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-05-04</th><tr data-revised-hash='5663141b5828dbb94899ae14b1f41ed1bb215ab2'><td><a href='/date/2022-05-04T10:59:48/css-text-3/'>10:59:48 PDT</a></td><td>2022-05-04 10:59:18 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Tweak changes list formatting, add link</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5663141b5828dbb94899ae14b1f41ed1bb215ab2/css-text-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-05-04T10:59:48/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-04-19</th><tr data-revised-hash='8024a3580eb35a380b03c5bd0e27ca3a984f966c'><td><a href='/date/2022-04-19T19:28:12/css-text-3/'>19:28:12 PDT</a></td><td>2022-04-19 19:27:41 PDT</td><td><span>fantasai</span></td><td>[css-text] Use Florian&#039;s rephrasing. #6992</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8024a3580eb35a380b03c5bd0e27ca3a984f966c/css-text-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2022-04-19T19:28:12/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-03-01</th><tr data-revised-hash='7a77c76d123102c069c3bf59857b965153660a46'><td><a href='/date/2022-03-01T14:58:55/css-text-3/'>14:58:55 PST</a></td><td>2022-03-01 14:58:06 PST</td><td><span>fantasai</span></td><td>[css-text-3][css-text-4] Sync wpt file path conventions</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7a77c76d123102c069c3bf59857b965153660a46/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-01T14:58:55/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='1014dc768d6790018d23372f5e9a1df0b3ef0e21'><td><a href='/date/2022-03-01T14:44:46/css-text-3/'>14:44:46 PST</a></td><td>2022-03-01 14:44:01 PST</td><td><span>fantasai</span></td><td>[css-text] Fix indentation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1014dc768d6790018d23372f5e9a1df0b3ef0e21/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-01T14:44:46/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='2ae7c8ac9f0251d895cf126321d9d8b774eed19a'><td><a href='/date/2022-03-01T13:58:39/css-text-3/'>13:58:39 PST</a></td><td>2022-03-01 13:57:40 PST</td><td><span>fantasai</span></td><td>[css-text-4] Merge in Level 3 content</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2ae7c8ac9f0251d895cf126321d9d8b774eed19a/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-03-01T13:58:39/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-12</th><tr data-revised-hash='dfaa0984a9dc136f9c2f7e2b6b1951ac441d8697'><td><a href='/date/2021-12-12T18:14:25/css-text-3/'>18:14:25 PST</a></td><td>2021-12-12 18:13:53 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text] list a few more tests</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfaa0984a9dc136f9c2f7e2b6b1951ac441d8697/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-12T18:14:25/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='8a95e818c90b912e6207c6f917b85c155ba18a0e'><td><a href='/date/2021-12-12T18:08:58/css-text-3/'>18:08:58 PST</a></td><td>2021-12-12 18:08:21 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Fix hyperlink</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8a95e818c90b912e6207c6f917b85c155ba18a0e/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-12T18:08:58/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-03</th><tr data-revised-hash='7224356edb21d9ea78c410f9dc202911ddb2b45a'><td><a href='/date/2021-12-03T12:02:36/css-text-3/'>12:02:36 PST</a></td><td>2021-11-15 13:13:56 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[editorial] inline the last remaining bits of the default.css stylesheet so I can remove it from the header</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7224356edb21d9ea78c410f9dc202911ddb2b45a/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-03T12:02:36/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-05-17</th><tr data-revised-hash='dfe5f345ac420eb0f68ef11b2dd22835d623a876'><td><a href='/date/2021-05-17T14:26:46/css-text-3/'>14:26:46 PDT</a></td><td>2021-05-17 14:24:15 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Revert &quot;Revert &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot;&quot; This reverts commit 9d14c2393cfeca05c799d43444fe9c860074e80b. The commit that it was reverting was actually fine; it was a merge, but looked like it was bad because it had a large diff against the first parent but it had no diff against the second (which was the relevant one in a &quot;linear history&quot; of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T14:26:46/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='70d026dcb8e01b8e3b0898968180c45a2d0da901'><td><a href='/date/2021-05-17T13:52:15/css-text-3/'>13:52:15 PDT</a></td><td>2021-05-17 12:25:01 PDT</td><td><span title='Adam Argyle'>adam_argyle</span></td><td>Revert &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot; This reverts commit 442ca50fbfe14f5e163336a54844ba447d2bafa7, reversing changes made to d0337ce2a834e083954a3b090fd69ea918a0302a.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70d026dcb8e01b8e3b0898968180c45a2d0da901/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T13:52:15/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-04-28</th><tr data-revised-hash='d349e215e671b27608b011cc3f842f78ae20edb0'><td><a href='/date/2021-04-28T23:13:40/css-text-3/'>23:13:40 PDT</a></td><td>2021-04-25 17:35:43 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update test coverage info</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d349e215e671b27608b011cc3f842f78ae20edb0/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-04-28T23:13:40/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-04-23</th><tr data-revised-hash='643bd8505657fbeb873481238e411fb491840d13'><td><a href='/date/2021-04-23T01:13:43/css-text-3/'>01:13:43 PDT</a></td><td>2021-04-23 01:12:13 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Editorial: remove a comma This makes sure the word &quot;typically&quot; is seen as applying to both clauses. See https://github.com/w3c/csswg-drafts/issues/5938</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/643bd8505657fbeb873481238e411fb491840d13/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-04-23T01:13:43/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='5c3716d7a2f659abbc52b6483e6d957db516e0ec'><td><a href='/date/2021-04-23T00:47:54/css-text-3/'>00:47:54 PDT</a></td><td>2021-04-23 00:46:08 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] &#039;&#039;distribute&#039;&#039; computes to &#039;&#039;inter-character&#039;&#039; See https://github.com/w3c/csswg-drafts/issues/6156</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5c3716d7a2f659abbc52b6483e6d957db516e0ec/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-04-23T00:47:54/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-04-22</th><tr data-revised-hash='950b794b9eb0ff3093d115a3733d0cd5ad17b978'><td><a href='/date/2021-04-22T19:18:48/css-text-3/'>19:18:48 PDT</a></td><td>2021-04-22 19:16:56 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Move test coverage information into the spec itself And regenerate the coverage report from the spec</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/950b794b9eb0ff3093d115a3733d0cd5ad17b978/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-04-22T19:18:48/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-04-08</th><tr data-revised-hash='0b6d15a45fddffa52282a39fcd4edb314ecb103b'><td><a href='/date/2021-04-08T22:08:13/css-text-3/'>22:08:13 PDT</a></td><td>2021-04-08 22:06:02 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Use consistant capitalization for &quot;user agent&quot; Also checks in a little script that helps in doing this semi-automatically.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0b6d15a45fddffa52282a39fcd4edb314ecb103b/css-text-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-04-08T22:08:13/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-30</th><tr data-revised-hash='d0efdf6ecefea1b2e57d90033cd67bd930860de1'><td><a href='/date/2021-03-30T02:00:14/css-text-3/'>02:00:14 PDT</a></td><td>2021-03-30 01:45:14 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Update test coverage info</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d0efdf6ecefea1b2e57d90033cd67bd930860de1/css-text-3/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-30T02:00:14/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-29</th><tr data-revised-hash='0d1e78746b5e84426f035d5d779bb163bc29acf6'><td><a href='/date/2021-03-29T00:59:06/css-text-3/'>00:59:06 PDT</a></td><td>2021-03-29 00:57:44 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Editorial: rework citation style</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0d1e78746b5e84426f035d5d779bb163bc29acf6/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-29T00:59:06/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-28</th><tr data-revised-hash='709c06810de30051b45eedad9f704ff48f498c5a'><td><a href='/date/2021-03-28T21:17:35/css-text-3/'>21:17:35 PDT</a></td><td>2021-03-28 21:15:43 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Editorial tweaks Fixing links, upgrading cross references to newer versions, minor rephrasings for clarity and to correct obvious contradictions.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/709c06810de30051b45eedad9f704ff48f498c5a/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-28T21:17:35/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-26</th><tr data-revised-hash='c07e44b80a5124d94cd8b0f7c493d02bf9376678'><td><a href='/date/2021-03-26T00:01:58/css-text-3/'>00:01:58 PDT</a></td><td>2021-03-26 00:01:09 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Editorial: punctuation Consistant usage of curly quotes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c07e44b80a5124d94cd8b0f7c493d02bf9376678/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-26T00:01:58/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-25</th><tr data-revised-hash='cfe2c52b35d2940b6aa230a7fd450fc4857ac7be'><td><a href='/date/2021-03-25T23:48:47/css-text-3/'>23:48:47 PDT</a></td><td>2021-03-25 23:22:22 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Editorial: source code reorganization This commit is editorial, and cleans up the source code of the spec: * Use tabs for indentation, spaces for alignment * Use semantic line breaks * omit optional html tags * Take advantage of bikeshed&#039;s markup and cross linking facilities * Fix a handful of typos and punctuation inconsistencies * Use syntax highlighting</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cfe2c52b35d2940b6aa230a7fd450fc4857ac7be/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-25T23:48:47/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-16</th><tr data-revised-hash='151476e64d258ae6c6f19f53d38a5267a98b1a7d'><td><a href='/date/2021-03-16T01:08:02/css-text-3/'>01:08:02 PDT</a></td><td>2021-03-16 01:07:42 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Clear out Previous Versions list also.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/151476e64d258ae6c6f19f53d38a5267a98b1a7d/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-16T01:08:02/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='4e5e2d8342880663eba67e809114df049eab5e13'><td><a href='/date/2021-03-16T01:07:18/css-text-3/'>01:07:18 PDT</a></td><td>2021-03-16 01:06:53 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Clear out changes section.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e5e2d8342880663eba67e809114df049eab5e13/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-16T01:07:18/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='aa8b10e27ee5fca5f3a8c4ebf2d02a50b4441b9b'><td><a href='/date/2021-03-16T01:04:27/css-text-3/'>01:04:27 PDT</a></td><td>2021-03-16 01:02:30 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Restore accidentally deleted line This was introduced in c1e4f53d623d23a9a45ccb9a477964f14470a3f6 and accidentally dropped in 97cc7a6b93d4387f05e983ffbabd96b21c9509c6 See #6062</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aa8b10e27ee5fca5f3a8c4ebf2d02a50b4441b9b/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-16T01:04:27/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-02-21</th><tr data-revised-hash='d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38'><td><a href='/date/2021-02-21T23:27:15/css-text-3/'>23:27:15 PST</a></td><td>2021-02-21 23:26:51 PST</td><td><span>fantasai</span></td><td>fix: typos across specs (#5992)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-21T23:27:15/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-02-15</th><tr data-revised-hash='082803213a4a5b0b7c372b7fce7e7526dc3e68e9'><td><a href='/date/2021-02-15T22:54:33/css-text-3/'>22:54:33 PST</a></td><td>2021-02-15 22:53:55 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text] Expand on full-size-kana example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/082803213a4a5b0b7c372b7fce7e7526dc3e68e9/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-15T22:54:33/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-02-08</th><tr data-revised-hash='b0602c4c66ef99cc66f3fc8cbc078a0fcb61668e'><td><a href='/date/2021-02-08T11:41:48/css-text-3/'>11:41:48 PST</a></td><td>2021-02-08 11:41:26 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>typo: Double words (#5951) Co-authored-by: Rachel Andrew &lt;rachel.andrew@edgeofmyseat.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b0602c4c66ef99cc66f3fc8cbc078a0fcb61668e/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-08T11:41:48/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-23</th><tr data-revised-hash='9d02b6b3a8f8719ae45a8f67f861b6abaf668b31'><td><a href='/date/2020-12-23T18:48:50/css-text-3/'>18:48:50 PST</a></td><td>2020-12-23 18:47:42 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Remove stray reference to %age word-spacing #5818</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9d02b6b3a8f8719ae45a8f67f861b6abaf668b31/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-23T18:48:50/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-19</th><tr data-revised-hash='2172b67d792d1a6ddea5a3f42265f1ad29d84e16'><td><a href='/date/2020-12-19T11:40:16/css-text-3/'>11:40:16 PST</a></td><td>2020-12-19 11:39:16 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-text-3] corrections from publishing</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2172b67d792d1a6ddea5a3f42265f1ad29d84e16/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-19T11:40:16/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-14</th><tr data-revised-hash='2264e9e630ace92a31d4261177e4823d7bcdc08a'><td><a href='/date/2020-12-14T22:44:07/css-text-3/'>22:44:07 PST</a></td><td>2020-12-14 22:43:42 PST</td><td><span>fantasai</span></td><td>[css-text-3] Update SOTD</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2264e9e630ace92a31d4261177e4823d7bcdc08a/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T22:44:07/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='6be5eed0e6d947328fc65bf92582ad1a15b820e4'><td><a href='/date/2020-12-14T22:43:30/css-text-3/'>22:43:30 PST</a></td><td>2020-12-14 22:42:57 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update metadata</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6be5eed0e6d947328fc65bf92582ad1a15b820e4/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T22:43:30/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='24f5e8f8f55d2924b236450353952572bad93b53'><td><a href='/date/2020-12-14T22:37:21/css-text-3/'>22:37:21 PST</a></td><td>2020-12-14 22:36:55 PST</td><td><span>fantasai</span></td><td>[css-text-3] Update Changes list</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/24f5e8f8f55d2924b236450353952572bad93b53/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T22:37:21/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='371a9eb2533454da64ee02cd18dfe64dfc06a269'><td><a href='/date/2020-12-14T22:11:41/css-text-3/'>22:11:41 PST</a></td><td>2020-12-14 22:08:47 PST</td><td><span>fantasai</span></td><td>[css-text-3] Update acknowledgements</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/371a9eb2533454da64ee02cd18dfe64dfc06a269/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T22:11:41/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='80282a90aae0a14aea5c41bda44a69fcc595f7ef'><td><a href='/date/2020-12-14T21:54:26/css-text-3/'>21:54:26 PST</a></td><td>2020-12-14 21:53:56 PST</td><td><span>fantasai</span></td><td>[css-text-3] Fix typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/80282a90aae0a14aea5c41bda44a69fcc595f7ef/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T21:54:26/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='76020046ecf79e349f5be9d26412199f4fad2a14'><td><a href='/date/2020-12-14T21:52:41/css-text-3/'>21:52:41 PST</a></td><td>2020-12-14 21:51:58 PST</td><td><span>fantasai</span></td><td>[css-text-3] Clean up changes log from 2013-2018 by referencing more exhaustive resources like the DoC, diffs, and commit logs.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/76020046ecf79e349f5be9d26412199f4fad2a14/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T21:52:41/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='51bb3110cceb0741ac85c5651b496e121b625625'><td><a href='/date/2020-12-14T21:25:05/css-text-3/'>21:25:05 PST</a></td><td>2020-12-14 21:24:42 PST</td><td><span>fantasai</span></td><td>[css-text-3] Shift note. Fix link.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/51bb3110cceb0741ac85c5651b496e121b625625/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T21:25:05/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='c545c8393ee75060cf5dc7dc47f65fa0ecc10a88'><td><a href='/date/2020-12-14T21:22:44/css-text-3/'>21:22:44 PST</a></td><td>2020-12-14 21:21:46 PST</td><td><span>fantasai</span></td><td>[css-text-3] Wrt trailing spaces and bidi, add cross-reference and make implication informative, rather than declaring a special-case rule. Update to #4308</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c545c8393ee75060cf5dc7dc47f65fa0ecc10a88/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T21:22:44/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='7493c40b9ffd488c36e6d53a58ab35715847a1ed'><td><a href='/date/2020-12-14T20:50:54/css-text-3/'>20:50:54 PST</a></td><td>2020-12-14 20:50:29 PST</td><td><span>fantasai</span></td><td>[css-text-3] Remove issue that&#039;s not relevant anymore.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7493c40b9ffd488c36e6d53a58ab35715847a1ed/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T20:50:54/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='9b86902adc79a02beea8e4834050ca119b150ed1'><td><a href='/date/2020-12-14T18:35:26/css-text-3/'>18:35:26 PST</a></td><td>2020-12-14 18:34:52 PST</td><td><span>fantasai</span></td><td>[css-text-3] Define ?word separator? a bit more precisely. #3878</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9b86902adc79a02beea8e4834050ca119b150ed1/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T18:35:26/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='a31eaf6f57c54ee13e3a94266c8df09b4fe36aa3'><td><a href='/date/2020-12-14T18:14:47/css-text-3/'>18:14:47 PST</a></td><td>2020-12-14 18:14:24 PST</td><td><span>fantasai</span></td><td>[css-text-3] Remove redundant text.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a31eaf6f57c54ee13e3a94266c8df09b4fe36aa3/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T18:14:47/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='6964060b0360481196c8e81ea62462c9e3a796fb'><td><a href='/date/2020-12-14T18:09:55/css-text-3/'>18:09:55 PST</a></td><td>2020-12-14 18:09:34 PST</td><td><span>fantasai</span></td><td>[css-text-3] Clarify break-spaces. #5783</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6964060b0360481196c8e81ea62462c9e3a796fb/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T18:09:55/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='15c98326ca78bc3aad7492552b98f061a1983556'><td><a href='/date/2020-12-14T17:54:00/css-text-3/'>17:54:00 PST</a></td><td>2020-12-14 17:53:36 PST</td><td><span>fantasai</span></td><td>[css-text-3] Slight tweak to soft hyphen wording. #3863</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/15c98326ca78bc3aad7492552b98f061a1983556/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T17:54:00/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='3bf11870a7d4b52b5c793d9201237913d03f2b2f'><td><a href='/date/2020-12-14T17:38:37/css-text-3/'>17:38:37 PST</a></td><td>2020-12-14 17:38:12 PST</td><td><span>fantasai</span></td><td>[css-text-3] Update DoC</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3bf11870a7d4b52b5c793d9201237913d03f2b2f/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T17:38:37/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='e7a087dcdd4d6ef1faee56d97a68cd9108697f76'><td><a href='/date/2020-12-14T15:38:50/css-text-3/'>15:38:50 PST</a></td><td>2020-12-14 15:37:48 PST</td><td><span>fantasai</span></td><td>[css-text-3] Improve cross-linking.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e7a087dcdd4d6ef1faee56d97a68cd9108697f76/css-text-3/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-14T15:38:50/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='750c75b2d832a2f95d41c0546205e586878c08f7'><td><a href='/date/2020-12-14T13:47:08/css-text-3/'>13:47:08 PST</a></td><td>2020-12-14 13:45:42 PST</td><td><span>fantasai</span></td><td>[css-text-3] Clarify that connected Indic scripts are not cursive. #3566</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/750c75b2d832a2f95d41c0546205e586878c08f7/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-14T13:47:08/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-09</th><tr data-revised-hash='a52d292181110641bd6e44a0d1f9c5f5b013a22e'><td><a href='/date/2020-12-09T04:13:50/css-text-3/'>04:13:50 PST</a></td><td>2020-12-02 14:26:36 PST</td><td><span>fantasai</span></td><td>[css-text][css-text-decor][css-writing-modes][css-color][css-fonts][css-color-adjust] Be explicit about which properties apply to text. #5303</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a52d292181110641bd6e44a0d1f9c5f5b013a22e/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-09T04:13:50/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-03</th><tr data-revised-hash='0ea1f22d6c9aa86717bf101c3619f260eb6b086d'><td><a href='/date/2020-12-03T08:09:00/css-text-3/'>08:09:00 PST</a></td><td>2020-12-03 08:08:32 PST</td><td><span>fantasai</span></td><td>[css-text-3] Adjust some wording wrt bidirectionality and line boxes #5759</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0ea1f22d6c9aa86717bf101c3619f260eb6b086d/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-03T08:09:00/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-12-02</th><tr data-revised-hash='0870aa80c6ac1bd88b1ccb0812797eb0d0502044'><td><a href='/date/2020-12-02T20:35:37/css-text-3/'>20:35:37 PST</a></td><td>2020-12-02 20:35:03 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Expand section title</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0870aa80c6ac1bd88b1ccb0812797eb0d0502044/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-02T20:35:37/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='080f69d8093d2ca104da81a6d87c1dbaa22b9aca'><td><a href='/date/2020-12-02T20:32:18/css-text-3/'>20:32:18 PST</a></td><td>2020-12-02 20:30:56 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Clarify segments breaks and interaction with DOM/HTML See #5147</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/080f69d8093d2ca104da81a6d87c1dbaa22b9aca/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-02T20:32:18/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='30168dab7927497eae62632cd9f44003ea06046b'><td><a href='/date/2020-12-02T19:37:15/css-text-3/'>19:37:15 PST</a></td><td>2020-12-02 19:36:12 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update wpt metadata</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/30168dab7927497eae62632cd9f44003ea06046b/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-02T19:37:15/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='035a0d46bb409701016734fbde034050bf20aa67'><td><a href='/date/2020-12-02T11:44:28/css-text-3/'>11:44:28 PST</a></td><td>2020-12-02 11:44:02 PST</td><td><span>fantasai</span></td><td>[css-text-3] Simplify examples. #5759</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/035a0d46bb409701016734fbde034050bf20aa67/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-02T11:44:28/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='090b146338b8f6300c96c9e8291fd280a01a6b0f'><td><a href='/date/2020-12-02T10:37:56/css-text-3/'>10:37:56 PST</a></td><td>2020-12-02 10:35:51 PST</td><td><span>fantasai</span></td><td>[css-text-3] Fix example text. #5758</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/090b146338b8f6300c96c9e8291fd280a01a6b0f/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-12-02T10:37:56/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-11-30</th><tr data-revised-hash='74ab13eb54b5ace56b66cd6baff76c60d3042011'><td><a href='/date/2020-11-30T23:41:10/css-text-3/'>23:41:10 PST</a></td><td>2020-11-30 23:40:13 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Uncomment manual tests from wpt tags Bikeshed now supports them too</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/74ab13eb54b5ace56b66cd6baff76c60d3042011/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-30T23:41:10/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-11-20</th><tr data-revised-hash='d4754868299d3c90b47a670b283f8915c9e9f133'><td><a href='/date/2020-11-20T11:41:57/css-text-3/'>11:41:57 PST</a></td><td>2020-11-20 11:41:29 PST</td><td><span>fantasai</span></td><td>[css-text-3] Markup fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d4754868299d3c90b47a670b283f8915c9e9f133/css-text-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-11-20T11:41:57/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-11-18</th><tr data-revised-hash='5192cb732a4cfe9e7e613ae00463225003034a88'><td><a href='/date/2020-11-18T16:56:47/css-text-3/'>16:56:47 PST</a></td><td>2020-11-18 16:56:12 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Use correct status</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5192cb732a4cfe9e7e613ae00463225003034a88/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-18T16:56:47/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='cff65b435335221c6961f3b46e35c7cfaafe2246'><td><a href='/date/2020-11-18T15:53:20/css-text-3/'>15:53:20 PST</a></td><td>2020-11-18 15:52:56 PST</td><td><span>fantasai</span></td><td>[css-text-3] Fix earlier neutral plaintext line wording: bidi switches on paragraph content, not line box content. #4405</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cff65b435335221c6961f3b46e35c7cfaafe2246/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-18T15:53:20/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='8a8aca41326a066b0d1d950b6127e9f8b2ea3ef3'><td><a href='/date/2020-11-18T15:49:46/css-text-3/'>15:49:46 PST</a></td><td>2020-11-18 15:49:20 PST</td><td><span>fantasai</span></td><td>[css-text-3] Update Changes list. Fix a couple typos.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8a8aca41326a066b0d1d950b6127e9f8b2ea3ef3/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-18T15:49:46/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-11-17</th><tr data-revised-hash='e588a900048b3f4665769e6301dd9a18b3657453'><td><a href='/date/2020-11-17T23:43:50/css-text-3/'>23:43:50 PST</a></td><td>2020-11-17 23:43:25 PST</td><td><span>fantasai</span></td><td>[css-text-3] Undefine where letter-spacing is applied. #1518</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e588a900048b3f4665769e6301dd9a18b3657453/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-17T23:43:50/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='d5481aff5e8c978e740711e56718e6f04ff1f20c'><td><a href='/date/2020-11-17T21:03:32/css-text-3/'>21:03:32 PST</a></td><td>2020-11-17 21:03:01 PST</td><td><span>fantasai</span></td><td>[css-text-3] Undefine segment break transformation rules in Level 3. #5086</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d5481aff5e8c978e740711e56718e6f04ff1f20c/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-17T21:03:32/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='fa7e5ed44390e11c1e0307e604b3a729825c0f08'><td><a href='/date/2020-11-17T19:35:07/css-text-3/'>19:35:07 PST</a></td><td>2020-11-17 19:34:03 PST</td><td><span>fantasai</span></td><td>[css-text-3] plaintext line boxes without a strong direction use directionality of previous line. #4405</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fa7e5ed44390e11c1e0307e604b3a729825c0f08/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-17T19:35:07/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-07-04</th><tr data-revised-hash='7bbfc01661870b064162f99591d31dff74f22bdc'><td><a href='/date/2019-07-04T20:22:15/css-text-3/'>20:22:15 PDT</a></td><td>2019-07-04 20:16:48 PDT</td><td><span title='Michael[tm] Smith'>michael_tm__smith</span></td><td>[css-text-3] Normatively disallow break-word This change adds a normative ?Authors must not? statement prohibiting authors from using the (deprecated) break-word value with the word-break property.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7bbfc01661870b064162f99591d31dff74f22bdc/css-text-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-07-04T20:22:15/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-10-05</th><tr data-revised-hash='fe3c51bf60757ade58db8372ca1562c4a96dfa4b'><td><a href='/date/2020-10-05T18:30:53/css-text-3/'>18:30:53 PDT</a></td><td>2020-10-01 18:49:25 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Update test coverage Matches: https://github.com/web-platform-tests/wpt/pull/25939 https://github.com/web-platform-tests/wpt/pull/25951 https://github.com/web-platform-tests/wpt/pull/25970 https://github.com/web-platform-tests/wpt/pull/25971 https://github.com/web-platform-tests/wpt/pull/25972 https://github.com/web-platform-tests/wpt/pull/25978 https://github.com/web-platform-tests/wpt/pull/25983 https://github.com/web-platform-tests/wpt/pull/25999 https://github.com/web-platform-tests/wpt/pull/26002</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fe3c51bf60757ade58db8372ca1562c4a96dfa4b/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-05T18:30:53/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-10-01</th><tr data-revised-hash='217d6aa0e89d5e7ec1b3327cc5108ad40e79a66e'><td><a href='/date/2020-10-01T22:51:44/css-text-3/'>22:51:44 PDT</a></td><td>2020-10-01 22:51:12 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Add a note at the top about atypical/ambiguous writing system situations, point at appendix.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/217d6aa0e89d5e7ec1b3327cc5108ad40e79a66e/css-text-3/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-10-01T22:51:44/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='0f1bc1d9d69e892007ea1f604c2f742287232f8b'><td><a href='/date/2020-10-01T21:08:28/css-text-3/'>21:08:28 PDT</a></td><td>2020-10-01 21:03:23 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Use the same wording in both paragraphs.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0f1bc1d9d69e892007ea1f604c2f742287232f8b/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-01T21:08:28/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='bad1f07b1ebf3f09d398322f77d29de8da1a700c'><td><a href='/date/2020-10-01T20:59:20/css-text-3/'>20:59:20 PDT</a></td><td>2020-10-01 20:59:02 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Markup fix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bad1f07b1ebf3f09d398322f77d29de8da1a700c/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-01T20:59:20/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='7375a1e9cb5e5306b7af78240b3ba06670b52c04'><td><a href='/date/2020-10-01T20:58:38/css-text-3/'>20:58:38 PDT</a></td><td>2020-10-01 20:58:09 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Explain about Suppress-Script</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7375a1e9cb5e5306b7af78240b3ba06670b52c04/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-01T20:58:38/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='db84349ea4a4807e947430f1dbd7672833ce96ad'><td><a href='/date/2020-10-01T17:58:14/css-text-3/'>17:58:14 PDT</a></td><td>2020-10-01 17:22:41 PDT</td><td><span>fantasai</span></td><td>[css-text-3] Move paragraphs. Tweak wording.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/db84349ea4a4807e947430f1dbd7672833ce96ad/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-01T17:58:14/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='90b3f748b3ac980d5ffaf79b43c7d57c05854d8f'><td><a href='/date/2020-10-01T02:43:49/css-text-3/'>02:43:49 PDT</a></td><td>2020-10-01 02:43:17 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text] test coverage</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/90b3f748b3ac980d5ffaf79b43c7d57c05854d8f/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-01T02:43:49/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='522d1110a15c54aaaaf1460ed18d649334cb4ab7'><td><a href='/date/2020-10-01T02:32:14/css-text-3/'>02:32:14 PDT</a></td><td>2020-10-01 01:17:19 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-text-3] Update test coverage info</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/522d1110a15c54aaaaf1460ed18d649334cb4ab7/css-text-3/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-01T02:32:14/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody></table></div><div class='footer'><div class='page_nav'><form accept-charset='utf-8' action='/history/css-text-3/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-text-3/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 4</span><form accept-charset='utf-8' action='/history/page/2/css-text-3/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/4/css-text-3/' method='get'><input type='submit' value='Last'></form></div></div></body></html>

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