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='LGnNOM7k7udXOvoejmXckKBTjUl7x7fT4xVEx3vpG9w=' 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='LGnNOM7k7udXOvoejmXckKBTjUl7x7fT4xVEx3vpG9w=' 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='LGnNOM7k7udXOvoejmXckKBTjUl7x7fT4xVEx3vpG9w=' type='text/javascript'><!-- // --></script><script nonce='LGnNOM7k7udXOvoejmXckKBTjUl7x7fT4xVEx3vpG9w=' 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-pseudo-4\/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-pseudo-4/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-pseudo-4/'>Home</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 2</span><a class='icon button next' href='/history/page/2/css-pseudo-4/'></a><a class='icon button last' href='/history/page/2/css-pseudo-4/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-pseudo-4/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-11-12</th><tr data-revised-hash='d126e34192e53372cd7429f7021e92c593ac0ec8'><td><a href='/date/2024-11-12T16:27:38/css-pseudo-4/'>16:27:38 PST</a></td><td>2024-11-12 16:27:13 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Update changes list and fix spec references</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d126e34192e53372cd7429f7021e92c593ac0ec8/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-12T16:27:38/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-11-08</th><tr data-revised-hash='608e950e71148592cdda7390d84a549765cdb8e0'><td><a href='/date/2024-11-08T11:42:10/css-pseudo-4/'>11:42:10 PST</a></td><td>2024-11-08 11:41:41 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Fix cross references</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/608e950e71148592cdda7390d84a549765cdb8e0/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-08T11:42:10/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-28</th><tr data-revised-hash='2c097e280a6164b46202adf9ca1f2b4cb7cd7142'><td><a href='/date/2024-10-28T06:54:01/css-pseudo-4/'>06:54:01 PDT</a></td><td>2024-10-28 06:53:31 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-pseudo-4] Fix remaining reference to old part-like pseudo-element term.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c097e280a6164b46202adf9ca1f2b4cb7cd7142/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-28T06:54:01/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-14</th><tr data-revised-hash='59e798073868571c71daed14928b66e92a343ee6'><td><a href='/date/2024-10-14T22:52:08/css-pseudo-4/'>22:52:08 PDT</a></td><td>2024-10-14 22:51:20 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Exclude css-inline-3 properties from ::placeholder #5379</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/59e798073868571c71daed14928b66e92a343ee6/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T22:52:08/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='edc6777ffa3eac7c02639d9802d087768643b719'><td><a href='/date/2024-10-14T22:43:27/css-pseudo-4/'>22:43:27 PDT</a></td><td>2024-10-14 22:42:51 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Forbid UA tweaks to author colors #6853</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/edc6777ffa3eac7c02639d9802d087768643b719/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T22:43:27/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='671c321768b40bb5f485f5ea22433552c334f04b'><td><a href='/date/2024-10-14T22:37:00/css-pseudo-4/'>22:37:00 PDT</a></td><td>2024-10-14 22:36:35 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Prefixed properties don't apply to highlights. #7580</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/671c321768b40bb5f485f5ea22433552c334f04b/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T22:37:00/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='2d4ad8a2c6055da60d4def4625e771cc7cf13358'><td><a href='/date/2024-10-14T22:34:39/css-pseudo-4/'>22:34:39 PDT</a></td><td>2024-10-14 22:33:32 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Add reminder that chaining is only allowed if explicitly specified #7118</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2d4ad8a2c6055da60d4def4625e771cc7cf13358/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T22:34:39/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='9b740c0c178ee249c38286453759244c2d49ffa8'><td><a href='/date/2024-10-14T22:21:40/css-pseudo-4/'>22:21:40 PDT</a></td><td>2024-10-14 22:21:18 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Add issue</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9b740c0c178ee249c38286453759244c2d49ffa8/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T22:21:40/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='cdfe4f8c6daf8242826bb09674aa961ee685bd9a'><td><a href='/date/2024-10-14T22:16:37/css-pseudo-4/'>22:16:37 PDT</a></td><td>2024-10-14 22:16:09 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4][css-forms-1] Move ::picker() to css-forms-1 where it belongs #10865</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cdfe4f8c6daf8242826bb09674aa961ee685bd9a/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T22:16:37/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='9eda3f6946dc96935993410dd80983f4def77895'><td><a href='/date/2024-10-14T22:11:44/css-pseudo-4/'>22:11:44 PDT</a></td><td>2024-10-14 22:11:16 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Rename part-like to element-backed and clean up prose</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9eda3f6946dc96935993410dd80983f4def77895/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T22:11:44/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='1efcdd09cf9696a7a54acd83d3fb3affcc0476d3'><td><a href='/date/2024-10-14T21:49:50/css-pseudo-4/'>21:49:50 PDT</a></td><td>2024-10-14 21:49:28 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Move part-like pseudo-elements chapter</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1efcdd09cf9696a7a54acd83d3fb3affcc0476d3/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T21:49:50/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ad22e2224f0f9c9a2d315875ae3fa7104638a373'><td><a href='/date/2024-10-14T21:47:23/css-pseudo-4/'>21:47:23 PDT</a></td><td>2024-09-05 14:36:34 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-shadow-parts][css-pseudo] Move various ::part() details to 'part-like pseudo-elements'. #10083</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ad22e2224f0f9c9a2d315875ae3fa7104638a373/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T21:47:23/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='6be7dde1af86865c96df71e4fa8a8884079747ea'><td><a href='/date/2024-10-14T21:38:20/css-pseudo-4/'>21:38:20 PDT</a></td><td>2024-10-14 21:37:55 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Use shorthand to make it slightly more obvious that it needs to be reset to be styled #9233</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6be7dde1af86865c96df71e4fa8a8884079747ea/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T21:38:20/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='86341abf198ac8404d237e17c448fb5535853c4e'><td><a href='/date/2024-10-14T21:32:22/css-pseudo-4/'>21:32:22 PDT</a></td><td>2024-10-14 21:27:02 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Add new pseudo-element ::search-text #10212 #10213 See https://github.com/w3c/csswg-drafts/pull/10475 Co-authored-by: Jihye Hong <jihye@igalia.com></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/86341abf198ac8404d237e17c448fb5535853c4e/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T21:32:22/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='fa92b49ae816da22f12e04146c852b362fcebf35'><td><a href='/date/2024-10-14T21:02:02/css-pseudo-4/'>21:02:02 PDT</a></td><td>2024-10-14 21:01:40 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Tighten up text about non-applicable properties taken from originating element #7591 #9428</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fa92b49ae816da22f12e04146c852b362fcebf35/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T21:02:02/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='dcd188f20bebea829bfaa7ca08da33e732a8d6b2'><td><a href='/date/2024-10-14T20:47:03/css-pseudo-4/'>20:47:03 PDT</a></td><td>2024-10-14 20:46:40 PDT</td><td><span title='Stephen Chenney'>schenney</span></td><td>[css-pseudo-4] Take certain non-applicable but required properties from the originating element #7591</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dcd188f20bebea829bfaa7ca08da33e732a8d6b2/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T20:47:03/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='211124499ded984f0c059d16ecbf97bba0046632'><td><a href='/date/2024-10-14T20:37:53/css-pseudo-4/'>20:37:53 PDT</a></td><td>2024-10-14 20:37:28 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4][css-highlight-api-1] Clean up redundancies in linkage. #6755</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/211124499ded984f0c059d16ecbf97bba0046632/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T20:37:53/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='bd1b2a0a635152a08021bdfe57a7fd80b6c461f7'><td><a href='/date/2024-10-14T20:25:31/css-pseudo-4/'>20:25:31 PDT</a></td><td>2024-10-14 20:25:10 PDT</td><td><span title='Dan Clark'>daniec</span></td><td>[css-pseudo-4] [css-highlight-api-1] Integrate custom highlights into css-pseudo-4 #6755 Co-authored-by: fantasai <fantasai.bugs@inkedblade.net></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bd1b2a0a635152a08021bdfe57a7fd80b6c461f7/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-10-14T20:25:31/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-09-23</th><tr data-revised-hash='7fca57fd39a77af2b744b5add21c378775388277'><td><a href='/date/2024-09-23T17:07:14/css-pseudo-4/'>17:07:14 PDT</a></td><td>2024-09-23 17:06:53 PDT</td><td><span title='Joey Arhar'>jarhar</span></td><td>Fix grammar for ::picker (#10936) Context: https://github.com/w3c/csswg-drafts/issues/10440#issuecomment-2357498781</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7fca57fd39a77af2b744b5add21c378775388277/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-23T17:07:14/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-09-17</th><tr data-revised-hash='202109767b97bdb1b3cf19d4dcc029bd59481444'><td><a href='/date/2024-09-17T11:49:13/css-pseudo-4/'>11:49:13 PDT</a></td><td>2024-09-17 11:48:52 PDT</td><td><span title='Joey Arhar'>jarhar</span></td><td>[css-pseudo-4] Define ::picker() (#10865) This was discussed here: https://github.com/w3c/csswg-drafts/issues/10440</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/202109767b97bdb1b3cf19d4dcc029bd59481444/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-17T11:49:13/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-09-05</th><tr data-revised-hash='c4a52f2d50c711417870d34b6d40e4868384dc9a'><td><a href='/date/2024-09-05T14:37:08/css-pseudo-4/'>14:37:08 PDT</a></td><td>2024-09-05 14:36:34 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-shadow-parts][css-pseudo] Move various ::part() details to 'part-like pseudo-elements'. #10083</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c4a52f2d50c711417870d34b6d40e4868384dc9a/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-05T14:37:08/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-08-30</th><tr data-revised-hash='0ff119e5fa44ba7361188f44f7e5d53cd91bee8e'><td><a href='/date/2024-08-30T12:14:59/css-pseudo-4/'>12:14:59 PDT</a></td><td>2024-08-30 12:14:26 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-pseudo-4][editorial] Update changes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0ff119e5fa44ba7361188f44f7e5d53cd91bee8e/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-30T12:14:59/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='852203bb0ad3f32fdee016b12fb23181119c41a1'><td><a href='/date/2024-08-30T11:59:00/css-pseudo-4/'>11:59:00 PDT</a></td><td>2024-08-30 11:56:51 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-pseudo-4][editorial] Update WPT</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/852203bb0ad3f32fdee016b12fb23181119c41a1/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-08-30T11:59:00/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-20</th><tr data-revised-hash='9d402f9ca6340d1a0368e84283c90d9a86989b09'><td><a href='/date/2024-06-20T10:54:06/css-pseudo-4/'>10:54:06 PDT</a></td><td>2024-06-20 10:53:45 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-pseudo-4] Simplified example of `::details-content` (#10476) 1. By depending on the animation rules defined in https://drafts.csswg.org/css-contain-3/#content-visibility-animation the step-end and step-start values are not needed. 2. 2. By depending on the change in https://github.com/whatwg/html/pull/10265#issuecomment-2145837051 and whatwg/html@fb3033a the `display: block` is no longer needed.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9d402f9ca6340d1a0368e84283c90d9a86989b09/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-20T10:54:06/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-19</th><tr data-revised-hash='6ac4e9e8687c347b195a407e3e242526cfd05904'><td><a href='/date/2024-06-19T00:14:32/css-pseudo-4/'>00:14:32 PDT</a></td><td>2024-06-19 00:14:12 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-pseudo-4] Add a new pseudo element ::search-text</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6ac4e9e8687c347b195a407e3e242526cfd05904/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-19T00:14:32/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-03</th><tr data-revised-hash='24f6bda9217c5052fd77fc1dc054505b902f59dc'><td><a href='/date/2024-06-03T11:08:37/css-pseudo-4/'>11:08:37 PDT</a></td><td>2024-06-03 11:06:55 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-pseudo-4] Fix formatting and error in example. display: block is needed for opacity to work; the default is display: contents.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/24f6bda9217c5052fd77fc1dc054505b902f59dc/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-03T11:08:37/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='2c59015f61ee40a209ec8e560ba264f4bb62a040'><td><a href='/date/2024-06-03T11:05:59/css-pseudo-4/'>11:05:59 PDT</a></td><td>2024-05-30 13:40:09 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Add ::details-content pseudo-element. (#10379) This adds the ::details-content pseudo-element as resolved in: 1. https://github.com/w3c/csswg-drafts/issues/9879#issuecomment-1942785500 2. https://github.com/whatwg/html/issues/10200#issuecomment-1998676547 / https://github.com/w3c/csswg-drafts/issues/9951#issuecomment-1997916879 3. https://github.com/w3c/csswg-drafts/issues/9879#issuecomment-2121658036 and uses the definition added in #10083.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c59015f61ee40a209ec8e560ba264f4bb62a040/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-06-03T11:05:59/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-04-12</th><tr data-revised-hash='b24e57259f1f8c6a8560c4a7bb6417b900162d91'><td><a href='/date/2024-04-12T11:55:29/css-pseudo-4/'>11:55:29 PDT</a></td><td>2024-04-12 11:55:04 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-pseudo] Merge definitions into one section, and add example.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b24e57259f1f8c6a8560c4a7bb6417b900162d91/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-12T11:55:29/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-04-11</th><tr data-revised-hash='a909100a0733617fd80bde7e1fbd0d94fc68e35d'><td><a href='/date/2024-04-11T13:48:43/css-pseudo-4/'>13:48:43 PDT</a></td><td>2024-04-11 13:48:08 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-pseudo] Define part-like pseudo-element. #10083</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a909100a0733617fd80bde7e1fbd0d94fc68e35d/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-11T13:48:43/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3399544b2ec39ca96b019afab01561ed4004c0ff'><td><a href='/date/2023-12-11T13:53:11/css-pseudo-4/'>13:53:11 PST</a></td><td>2023-09-12 17:06:21 PDT</td><td><span title='Stephen Chenney'>schenney</span></td><td>Fix typos</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3399544b2ec39ca96b019afab01561ed4004c0ff/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3399544b2ec39ca96b019afab01561ed4004c0ff'><td><a href='/date/2023-12-11T13:53:11/css-pseudo-4/'>13:53:11 PST</a></td><td>2023-09-12 17:06:21 PDT</td><td><span title='Stephen Chenney'>schenney</span></td><td>Fix typos</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3399544b2ec39ca96b019afab01561ed4004c0ff/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3399544b2ec39ca96b019afab01561ed4004c0ff'><td><a href='/date/2023-12-11T13:53:11/css-pseudo-4/'>13:53:11 PST</a></td><td>2023-09-12 17:06:21 PDT</td><td><span title='Stephen Chenney'>schenney</span></td><td>Fix typos</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3399544b2ec39ca96b019afab01561ed4004c0ff/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='514990f5dde3ecc62eed00e6db7f1af2628c635e'><td><a href='/date/2023-07-21T08:55:41/css-pseudo-4/'>08:55:41 PDT</a></td><td>2023-07-04 13:50:02 PDT</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td>[css-pseudo-4][editorial] Fixed formatting in example 2 After #9024, the line breaks were a bit off, which this change corrects.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/514990f5dde3ecc62eed00e6db7f1af2628c635e/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-07-21T08:55:41/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='c761a08d1876a9fada1ed903645db97824e81306'><td><a href='/date/2023-05-07T21:39:40/css-pseudo-4/'>21:39:40 PDT</a></td><td>2023-03-27 14:01:14 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-pseudo-4] Update informative list of "see also" specs, see #8635</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c761a08d1876a9fada1ed903645db97824e81306/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-05-07T21:39:40/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='1b1c421e1e0b195f6a753d077a134befa3929d61'><td><a href='/date/2023-01-15T18:55:16/css-pseudo-4/'>18:55:16 PST</a></td><td>2023-01-15 18:54:28 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-pseudo-4] Bikeshed fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1b1c421e1e0b195f6a753d077a134befa3929d61/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-01-15T18:55:16/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='22a42aafa9286b60dfaa000b0742995ebc48dd0f'><td><a href='/date/2022-12-29T19:58:54/css-pseudo-4/'>19:58:54 PST</a></td><td>2022-12-29 19:01:30 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4][editorial] Bikeshed fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/22a42aafa9286b60dfaa000b0742995ebc48dd0f/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T19:58:54/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='26cf1c427ffc72922aedb2c3f32c6a8e34bec6ef'><td><a href='/date/2022-12-29T17:45:22/css-pseudo-4/'>17:45:22 PST</a></td><td>2022-12-29 17:44:36 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Reword to avoid broken link</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/26cf1c427ffc72922aedb2c3f32c6a8e34bec6ef/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T17:45:22/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ab36d1b92376ca752ccba8fa2bd82de901879931'><td><a href='/date/2022-12-29T17:29:42/css-pseudo-4/'>17:29:42 PST</a></td><td>2022-12-29 17:29:12 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Update Changes list</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ab36d1b92376ca752ccba8fa2bd82de901879931/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T17:29:42/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='d32a3de24e0b04044a37e5b439d963a994b6b03c'><td><a href='/date/2022-12-29T12:57:45/css-pseudo-4/'>12:57:45 PST</a></td><td>2022-12-29 12:57:09 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Define forced colors mode on highlight pseudo-elements. #7264</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d32a3de24e0b04044a37e5b439d963a994b6b03c/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T12:57:45/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='37be691253650b5e72c6a9792616e4e935bd33d3'><td><a href='/date/2022-12-29T12:22:35/css-pseudo-4/'>12:22:35 PST</a></td><td>2022-12-29 12:21:57 PST</td><td><span>fantasai</span></td><td>[selectors-4][css-pseudo-4] Revert placeholder option example, since HTML doesn't include it atm. #2517</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/37be691253650b5e72c6a9792616e4e935bd33d3/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T12:22:35/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3b83afce054e688628d3096071ec2f1708674343'><td><a href='/date/2022-12-29T11:45:17/css-pseudo-4/'>11:45:17 PST</a></td><td>2022-12-29 11:44:48 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Copy placeholder example from selectors-4. #6669</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3b83afce054e688628d3096071ec2f1708674343/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T11:45:17/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f1817b0640e458be4e7ef558e11eb7cf61fa33c7'><td><a href='/date/2022-12-29T09:28:07/css-pseudo-4/'>09:28:07 PST</a></td><td>2022-12-29 09:27:27 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Clarify that pseudo-elements are suppressed just like regular elements. #625</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f1817b0640e458be4e7ef558e11eb7cf61fa33c7/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T09:28:07/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='a15d218587306ab480946b0bdfccf7bab530a36a'><td><a href='/date/2022-12-29T08:59:17/css-pseudo-4/'>08:59:17 PST</a></td><td>2022-12-29 08:58:47 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Root inline fragment is inside ::first-line #1384</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a15d218587306ab480946b0bdfccf7bab530a36a/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-29T08:59:17/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='61c5ad4116849b014a24354cf4cb2fc796bd80bb'><td><a href='/date/2022-12-27T16:15:07/css-pseudo-4/'>16:15:07 PST</a></td><td>2022-12-27 16:11:38 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Add @delan's tests #6316 #6603</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/61c5ad4116849b014a24354cf4cb2fc796bd80bb/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-12-27T16:15:07/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-10-07</th><tr data-revised-hash='5045f6e33b51a182ae5eb919098f87cde0a14bee'><td><a href='/date/2022-10-07T10:26:55/css-pseudo-4/'>10:26:55 PDT</a></td><td>2022-10-07 10:26:37 PDT</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>[css-pseudo-4] clarify applicability of underline-related properties on highlights #7101</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5045f6e33b51a182ae5eb919098f87cde0a14bee/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-10-07T10:26:55/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-10-06</th><tr data-revised-hash='2844a22822c5233e075d355499f8458b94851b9b'><td><a href='/date/2022-10-06T11:13:54/css-pseudo-4/'>11:13:54 PDT</a></td><td>2022-10-06 11:13:33 PDT</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>[css-pseudo] clarify paired cascade (#6386 + #6779 + #6774 + #7837) (#6665)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2844a22822c5233e075d355499f8458b94851b9b/css-pseudo-4/Overview.bs'></a><a class='bikeshed generating' href='/date/2022-10-06T11:13:54/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-10</th><tr data-revised-hash='fb918feb15108b84cd9371ac0d94150e3feafbfd'><td><a href='/date/2022-05-10T01:03:14/css-pseudo-4/'>01:03:14 PDT</a></td><td>2022-05-10 01:00:21 PDT</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>all highlight pseudo styles, not just the root Co-authored-by: fantasai <fantasai.bugs@inkedblade.net></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fb918feb15108b84cd9371ac0d94150e3feafbfd/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-05-10T01:03:14/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='c5d59663fd26962433483e8c0c174add9d498fc5'><td><a href='/date/2022-04-19T14:56:45/css-pseudo-4/'>14:56:45 PDT</a></td><td>2022-01-24 22:14:31 PST</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>replace new #styling section with --* propdef update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c5d59663fd26962433483e8c0c174add9d498fc5/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-04-19T14:56:45/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ecbdd5977b274efda0ce04477f6f88e31dd54b68'><td><a href='/date/2022-04-19T14:22:41/css-pseudo-4/'>14:22:41 PDT</a></td><td>2022-04-15 03:11:11 PDT</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>[css-pseudo] clarify highlight color:currentColor (closes #6818)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ecbdd5977b274efda0ce04477f6f88e31dd54b68/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-04-19T14:22:41/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-01-30</th><tr data-revised-hash='f47334759e10ac94159264a38d0d55548f4cd064'><td><a href='/date/2022-01-30T21:00:48/css-pseudo-4/'>21:00:48 PST</a></td><td>2022-01-30 21:00:24 PST</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>[css-pseudo] text decorations on highlight pseudos (closes #6022) (#6666) Clarify highlight decoration semantics</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f47334759e10ac94159264a38d0d55548f4cd064/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-01-30T21:00:48/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-01-21</th><tr data-revised-hash='b268ba685afef2ea10093aa5fbd4e96389163d2e'><td><a href='/date/2022-01-21T12:23:59/css-pseudo-4/'>12:23:59 PST</a></td><td>2021-09-22 05:43:29 PDT</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>[css-pseudo] non-substantive prose tweaks</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b268ba685afef2ea10093aa5fbd4e96389163d2e/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-01-21T12:23:59/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-01-08</th><tr data-revised-hash='46e605c195ba58c33f9506642e244f89e95c0607'><td><a href='/date/2022-01-08T19:35:37/css-pseudo-4/'>19:35:37 PST</a></td><td>2022-01-08 16:58:51 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/46e605c195ba58c33f9506642e244f89e95c0607/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-01-08T19:35:37/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-30</th><tr data-revised-hash='639cea4b08e58c4e31cad81bdadd43c1ceee10c0'><td><a href='/date/2021-12-30T22:50:56/css-pseudo-4/'>22:50:56 PST</a></td><td>2021-12-30 22:11:33 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Move sentence about wrapping first-letter text per https://github.com/w3c/csswg-drafts/issues/2254#issuecomment-1003273685</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/639cea4b08e58c4e31cad81bdadd43c1ceee10c0/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-30T22:50:56/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='2c9ba6b392109d6bc48ce8a90d62db5096d073b6'><td><a href='/date/2021-12-30T18:07:24/css-pseudo-4/'>18:07:24 PST</a></td><td>2021-12-30 18:06:57 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Update Changes list</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c9ba6b392109d6bc48ce8a90d62db5096d073b6/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-30T18:07:24/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f698ebe5f65493c3003a5511c6da3e9a46eda934'><td><a href='/date/2021-12-30T17:21:09/css-pseudo-4/'>17:21:09 PST</a></td><td>2021-12-30 17:20:42 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Define CSSPseudoElement.pseudo() #3836</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f698ebe5f65493c3003a5511c6da3e9a46eda934/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-30T17:21:09/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='7751c72f50f66b28b7b765d567cbf153523add13'><td><a href='/date/2021-12-30T02:37:27/css-pseudo-4/'>02:37:27 PST</a></td><td>2021-12-30 02:37:01 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Define impact of line-height on ::first-line #2282</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7751c72f50f66b28b7b765d567cbf153523add13/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2021-12-30T02:37:27/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='6ee6b45004c8530f7053b6f8cad9006fdd96ad43'><td><a href='/date/2021-12-30T02:28:01/css-pseudo-4/'>02:28:01 PST</a></td><td>2021-12-30 02:27:27 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] No ::first-letter on the second line. #2254</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6ee6b45004c8530f7053b6f8cad9006fdd96ad43/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-30T02:28:01/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='624d425ee446eebbe2b13e9475a491d893f1ad39'><td><a href='/date/2021-12-30T02:10:10/css-pseudo-4/'>02:10:10 PST</a></td><td>2021-12-30 02:09:44 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Mark CSSPseudoElement interface under construction per https://github.com/w3c/csswg-drafts/issues/4619#issuecomment-763818225</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/624d425ee446eebbe2b13e9475a491d893f1ad39/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-30T02:10:10/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='52c3eb05eaf8d404ac01f2aa3cfe607660762e4b'><td><a href='/date/2021-12-30T00:31:04/css-pseudo-4/'>00:31:04 PST</a></td><td>2021-12-30 00:30:05 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Clarify painting order of highlight text decoration, allow ::selection stacked at the top. #6022</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/52c3eb05eaf8d404ac01f2aa3cfe607660762e4b/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-30T00:31:04/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3b5c0c4e4b4ad293627c73637adf59d66432b685'><td><a href='/date/2021-12-30T00:10:24/css-pseudo-4/'>00:10:24 PST</a></td><td>2021-12-28 15:59:01 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Improve cross-linking to CSS Text 3.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3b5c0c4e4b4ad293627c73637adf59d66432b685/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-30T00:10:24/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-28</th><tr data-revised-hash='89a48d25e806aa45e0791793109566df286c58d7'><td><a href='/date/2021-12-28T15:19:17/css-pseudo-4/'>15:19:17 PST</a></td><td>2021-12-28 15:18:51 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Move image</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/89a48d25e806aa45e0791793109566df286c58d7/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-28T15:19:17/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='332bb1978411302d97fa9d1e9aa11a2f4461b08a'><td><a href='/date/2021-12-28T15:12:21/css-pseudo-4/'>15:12:21 PST</a></td><td>2021-12-28 15:11:54 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] First letter, not first word. #5830</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/332bb1978411302d97fa9d1e9aa11a2f4461b08a/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-28T15:12:21/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ca5e473a10b2849770b68fc759c520236cb7f684'><td><a href='/date/2021-12-28T14:12:13/css-pseudo-4/'>14:12:13 PST</a></td><td>2021-12-28 14:11:51 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Wording tweak</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ca5e473a10b2849770b68fc759c520236cb7f684/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-28T14:12:13/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='8979387331b08ff57219618b751b2731e4624b92'><td><a href='/date/2021-12-28T14:06:21/css-pseudo-4/'>14:06:21 PST</a></td><td>2021-12-28 14:05:54 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Add RR diagram #5830</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8979387331b08ff57219618b751b2731e4624b92/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-28T14:06:21/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='09d174fe1d638d791323f0db62a989e2dc49330d'><td><a href='/date/2021-12-28T14:02:31/css-pseudo-4/'>14:02:31 PST</a></td><td>2021-12-28 14:01:32 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Use minus as difference operator. #5830 Backslash might be nice alternative, but turns into a yen sign in some fonts. :/</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/09d174fe1d638d791323f0db62a989e2dc49330d/css-pseudo-4/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-12-28T14:02:31/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b380ecc858ed16298c92b15bfbcd8314ee5cfb02'><td><a href='/date/2021-12-28T12:58:38/css-pseudo-4/'>12:58:38 PST</a></td><td>2021-12-28 12:58:08 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Fix informal pattern to not allow starting/ending with spaces... #5830</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b380ecc858ed16298c92b15bfbcd8314ee5cfb02/css-pseudo-4/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-12-28T12:58:38/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-27</th><tr data-revised-hash='35124106644dbb07ffb71b807ae2d693eee2c28e'><td><a href='/date/2021-12-27T01:02:41/css-pseudo-4/'>01:02:41 PST</a></td><td>2021-12-27 01:02:15 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Add Symbols to possible First Letters. #5099</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/35124106644dbb07ffb71b807ae2d693eee2c28e/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-27T01:02:41/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e9104c61388571d0314886ed9ead683fff68b883'><td><a href='/date/2021-12-27T00:48:35/css-pseudo-4/'>00:48:35 PST</a></td><td>2021-12-27 00:47:21 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Use slightly more self-consistent informal syntax in the note. #5830</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e9104c61388571d0314886ed9ead683fff68b883/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-27T00:48:35/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='651e326a5403b80e4264dd1ef5ed1f32dd5db835'><td><a href='/date/2021-12-27T00:43:58/css-pseudo-4/'>00:43:58 PST</a></td><td>2021-12-27 00:41:09 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Exclude Pd and Ps from following first-letter. #5830</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/651e326a5403b80e4264dd1ef5ed1f32dd5db835/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-27T00:43:58/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-26</th><tr data-revised-hash='62c05920efcaa3f3613925a814ce32285ae21ce7'><td><a href='/date/2021-12-26T22:30:18/css-pseudo-4/'>22:30:18 PST</a></td><td>2021-12-26 22:29:35 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Define ::prefix and ::postfix sub-elements of ::first-letter. #2040</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/62c05920efcaa3f3613925a814ce32285ae21ce7/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-26T22:30:18/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-pseudo-4/'>14:26:46 PDT</a></td><td>2021-05-17 14:24:15 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Revert "Revert "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main"" This reverts commit 9d14c2393cfeca05c799d43444fe9c860074e80b. The commit that it was reverting was actually fine; it was a merge, but looked like it was bad because it had a large diff against the first parent but it had no diff against the second (which was the relevant one in a "linear history" of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T14:26:46/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-pseudo-4/'>13:52:15 PDT</a></td><td>2021-05-17 12:25:01 PDT</td><td><span title='Adam Argyle'>adam_argyle</span></td><td>Revert "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main" This reverts commit 442ca50fbfe14f5e163336a54844ba447d2bafa7, reversing changes made to d0337ce2a834e083954a3b090fd69ea918a0302a.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70d026dcb8e01b8e3b0898968180c45a2d0da901/css-pseudo-4/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T13:52:15/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-pseudo-4/'>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 "user agent" 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-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-04-08T22:08:13/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-19</th><tr data-revised-hash='5b09e7c9c45f539124cacbb6fa605ab7dbe941ab'><td><a href='/date/2021-03-19T16:44:35/css-pseudo-4/'>16:44:35 PDT</a></td><td>2021-03-19 16:43:54 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Fix fictional tag sequence example error.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5b09e7c9c45f539124cacbb6fa605ab7dbe941ab/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-19T16:44:35/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='5fbad85097a93c30f277602d17d66fb91038dd79'><td><a href='/date/2021-03-16T00:13:59/css-pseudo-4/'>00:13:59 PDT</a></td><td>2021-03-16 00:11:47 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Clarify antecedents. #6022</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5fbad85097a93c30f277602d17d66fb91038dd79/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-03-16T00:13:59/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-pseudo-4/'>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-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-02-21T23:27:15/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-pseudo-4/'>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 <rachel.andrew@edgeofmyseat.com></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b0602c4c66ef99cc66f3fc8cbc078a0fcb61668e/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-02-08T11:41:48/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-03</th><tr data-revised-hash='c2bfe6ceea40e0475456a463f591c61ce9f8b5b2'><td><a href='/date/2021-02-03T14:01:50/css-pseudo-4/'>14:01:50 PST</a></td><td>2021-02-03 14:01:31 PST</td><td><a href='mailto:dazabani@igalia.com' title='Delan Azabani'>dazabani</a></td><td>[css-pseudo-4] update <wpt> for #highlight-painting (#5921)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c2bfe6ceea40e0475456a463f591c61ce9f8b5b2/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-02-03T14:01:50/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-01-26</th><tr data-revised-hash='f6eac69e030bd5c5ad2c413096db285b66e534b9'><td><a href='/date/2021-01-26T18:52:36/css-pseudo-4/'>18:52:36 PST</a></td><td>2021-01-26 18:48:14 PST</td><td><span title='G?rard Talbot'>g_rard_talbot</span></td><td>Bikeshed-added links to 32 tests</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f6eac69e030bd5c5ad2c413096db285b66e534b9/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-01-26T18:52:36/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-01-13</th><tr data-revised-hash='621cc8b5dd256c225b79cea60a27ae223dea7dc7'><td><a href='/date/2021-01-13T09:21:12/css-pseudo-4/'>09:21:12 PST</a></td><td>2021-01-13 09:20:40 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Drop caret-color and cursor from highlight pseudos for lack of interest/use cases. #4100</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/621cc8b5dd256c225b79cea60a27ae223dea7dc7/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2021-01-13T09:21:12/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-31</th><tr data-revised-hash='020122abd6faf0e5b9c2a2c4a1194dc9e0cd4a29'><td><a href='/date/2020-12-31T02:10:33/css-pseudo-4/'>02:10:33 PST</a></td><td>2020-12-31 02:10:08 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Improve markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/020122abd6faf0e5b9c2a2c4a1194dc9e0cd4a29/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-31T02:10:33/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='9c9966eb95492edc28dd5393186ec7613d5cb735'><td><a href='/date/2020-12-31T02:03:22/css-pseudo-4/'>02:03:22 PST</a></td><td>2020-12-31 02:02:25 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Remove terrible outdated examples. #4392</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9c9966eb95492edc28dd5393186ec7613d5cb735/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-31T02:03:22/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='68a0434b6ae59683edb9333e85f0fcde26619b9b'><td><a href='/date/2020-12-31T01:52:14/css-pseudo-4/'>01:52:14 PST</a></td><td>2020-12-31 01:51:47 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Actually, let's add that to the correct section?</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/68a0434b6ae59683edb9333e85f0fcde26619b9b/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-31T01:52:14/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='02f04fd17dcd90998b7aca88108e40ece183d861'><td><a href='/date/2020-12-31T01:49:23/css-pseudo-4/'>01:49:23 PST</a></td><td>2020-12-31 01:49:00 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Clarify that applying properties to ::first-letter can't change what matches ::first-letter. #4392</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/02f04fd17dcd90998b7aca88108e40ece183d861/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-31T01:49:23/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='612542b5680740d870c296a9478696b7929d25a5'><td><a href='/date/2020-12-31T01:37:22/css-pseudo-4/'>01:37:22 PST</a></td><td>2020-12-31 01:37:01 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Move paragraphs around.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/612542b5680740d870c296a9478696b7929d25a5/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-31T01:37:22/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='cce650eacc60ace05c90e11eb33e00bf68ed24e7'><td><a href='/date/2020-12-31T00:30:26/css-pseudo-4/'>00:30:26 PST</a></td><td>2020-12-31 00:29:56 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Move note.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cce650eacc60ace05c90e11eb33e00bf68ed24e7/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-31T00:30:26/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-30</th><tr data-revised-hash='98487bfb8c8e2b392b97ea67b9db8e50d4966a21'><td><a href='/date/2020-12-30T23:34:55/css-pseudo-4/'>23:34:55 PST</a></td><td>2020-12-30 23:34:20 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Rewrite definition of first formatted line as a proper definition as outlined by Oriol in #1158</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/98487bfb8c8e2b392b97ea67b9db8e50d4966a21/css-pseudo-4/Overview.bs'></a><a class='bikeshed success' href='/date/2020-12-30T23:34:55/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e90ffce481e6ebf9a38c2e5470c38a606b42a465'><td><a href='/date/2020-12-30T19:10:17/css-pseudo-4/'>19:10:17 PST</a></td><td>2020-12-30 19:08:41 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] ::first-line cannot cross non-block element formatting context boundary. Also except table captions. #1174 fixes https://github.com/w3c/csswg-drafts/pull/1174</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e90ffce481e6ebf9a38c2e5470c38a606b42a465/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-30T19:10:17/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='256622c48d3d0291c62b7b3eb79b6f39b03da1ef'><td><a href='/date/2020-12-30T19:00:45/css-pseudo-4/'>19:00:45 PST</a></td><td>2020-12-30 18:16:06 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Tighten up default selection color requirement. #4785</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/256622c48d3d0291c62b7b3eb79b6f39b03da1ef/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-30T19:00:45/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='7230efbedb816088d6f08f9ee7fbb095c52b3833'><td><a href='/date/2020-12-30T17:24:40/css-pseudo-4/'>17:24:40 PST</a></td><td>2020-12-30 17:24:15 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Fix/add links.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7230efbedb816088d6f08f9ee7fbb095c52b3833/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-30T17:24:40/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='2d12e9cf7a5600c4e0c1d5e9b49ca4b3fb448c46'><td><a href='/date/2020-12-30T15:39:57/css-pseudo-4/'>15:39:57 PST</a></td><td>2020-12-30 15:39:32 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Update Changes list.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2d12e9cf7a5600c4e0c1d5e9b49ca4b3fb448c46/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-30T15:39:57/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ba24204a98e7d274ca668e75e8108d3303b52c1a'><td><a href='/date/2020-12-30T15:09:03/css-pseudo-4/'>15:09:03 PST</a></td><td>2020-12-30 15:08:18 PST</td><td><span>fantasai</span></td><td>[css-lists-3] Remove ::inactive-selection; investigate mediaquery instead. #4579</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ba24204a98e7d274ca668e75e8108d3303b52c1a/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-30T15:09:03/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='12313dee4d205ea3a0d49f66cb5cb89084d43052'><td><a href='/date/2020-12-30T11:54:19/css-pseudo-4/'>11:54:19 PST</a></td><td>2020-12-30 11:53:57 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Remove parenthetical #4500</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/12313dee4d205ea3a0d49f66cb5cb89084d43052/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-30T11:54:19/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='66ea53c1632c1daa3ca391c32666807eb4f26179'><td><a href='/date/2020-12-30T11:49:03/css-pseudo-4/'>11:49:03 PST</a></td><td>2020-12-30 11:48:31 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Pull highlight pseudo property logic from source comment into prose. #4401</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/66ea53c1632c1daa3ca391c32666807eb4f26179/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-30T11:49:03/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-22</th><tr data-revised-hash='3f554b6328fd45faadaccceab8c582235086b9ed'><td><a href='/date/2020-12-22T14:03:10/css-pseudo-4/'>14:03:10 PST</a></td><td>2020-12-13 07:53:54 PST</td><td><span title='Emilio Cobos Álvarez'>emilio</span></td><td>[css-pseudo] Add text for the ::file-selector-button pseudo-element. Closes #5049</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3f554b6328fd45faadaccceab8c582235086b9ed/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-12-22T14:03:10/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06</th><tr data-revised-hash='f2fc26e8900e7fb23e219e6f9b51ffbe1391cfe9'><td><a href='/date/2020-11-06T16:10:01/css-pseudo-4/'>16:10:01 PST</a></td><td>2020-11-06 16:09:35 PST</td><td><span>fantasai</span></td><td>[css-pseudo-4] Specify ::marker::marker as invalid, define that display loses its 'list-item'. https://github.com/w3c/csswg-drafts/issues/1793#issuecomment-708072107</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f2fc26e8900e7fb23e219e6f9b51ffbe1391cfe9/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-11-06T16:10:01/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-10-13</th><tr data-revised-hash='1a94ba15222e60b5c41cde27baaeac67d31c0759'><td><a href='/date/2020-10-13T16:55:35/css-pseudo-4/'>16:55:35 PDT</a></td><td>2020-10-13 16:55:05 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Note that ::before/::after can have attached ::marker. #1793</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1a94ba15222e60b5c41cde27baaeac67d31c0759/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T16:55:35/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='75148176795220012543ebab9936fcc06b35791d'><td><a href='/date/2020-10-13T16:18:01/css-pseudo-4/'>16:18:01 PDT</a></td><td>2020-10-13 16:17:40 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Define interaction of ::marker and ::first-line/::first-letter. #1442</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/75148176795220012543ebab9936fcc06b35791d/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T16:18:01/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='e28911c4af1f4d081eeb6786c8741fec0f76d1b7'><td><a href='/date/2020-10-13T15:50:24/css-pseudo-4/'>15:50:24 PDT</a></td><td>2020-10-13 15:50:03 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Fix markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e28911c4af1f4d081eeb6786c8741fec0f76d1b7/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T15:50:24/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='98ba737ab3cc42677f0a0b3de944e4b696efe7a4'><td><a href='/date/2020-10-13T15:35:07/css-pseudo-4/'>15:35:07 PDT</a></td><td>2020-10-13 15:34:44 PDT</td><td><span>fantasai</span></td><td>[css-pseudo-4] Switch UA stylesheet for ::spelling-error/::grammar-error/::target-text to recommendations rather than requirements.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/98ba737ab3cc42677f0a0b3de944e4b696efe7a4/css-pseudo-4/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-13T15:35:07/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-pseudo-4/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-pseudo-4/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 2</span><form accept-charset='utf-8' action='/history/page/2/css-pseudo-4/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/2/css-pseudo-4/' method='get'><input type='submit' value='Last'></form></div></div></body></html>