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='A46s0Mk+94nCigqNFxJpXyV/EiUEIPAQiaN9Oed+Ngs=' 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='A46s0Mk+94nCigqNFxJpXyV/EiUEIPAQiaN9Oed+Ngs=' 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='A46s0Mk+94nCigqNFxJpXyV/EiUEIPAQiaN9Oed+Ngs=' type='text/javascript'><!-- // --></script><script nonce='A46s0Mk+94nCigqNFxJpXyV/EiUEIPAQiaN9Oed+Ngs=' 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-anchor-position-1\/Overview.bs";var gPage=1;var gUpdateStream=null;function updateTBody(tbody,data){return system.iterateElementChildren(tbody,function(tr,rowIndex){if(tr.getAttribute('data-revised-hash')==data.revised_changeset.hash){var icon=tr.lastElementChild.lastElementChild;icon.className=data.type+' '+data.status;return true;}});}function updateTable(table,data){return system.iterateElementChildren(table,function(tbody,tbodyIndex){if('TBODY'==tbody.tagName){return updateTBody(tbody,data);}});}function updateDraft(message,data){if('revised'==data.revision_status){var historyTable=document.getElementById('history_table');if(!updateTable(historyTable,data)){if((1==gPage)&&(data.source_path.split('/').length<=2)){window.location.reload();}}}}function startStream(){gUpdateStream=new Stream(gDraftAPIURI,{'repo':gRepo,'date':gDate,'branch':gBranch,'head':gHead,'path':gRepoPath},updateDraft);gUpdateStream.persist=true;}function setupPage(){startStream();}system.addLoadEvent(setupPage); // --></script></head><body><div class='header'><div class='logo'><a href='http://www.w3.org/' rel='home'><img alt='W3C' src='/core/img/logo-w3c-screen-sm.png'></a></div><div class='login' id='login'><div><a href='/login/return/history/css-anchor-position-1/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-anchor-position-1/'>Specification</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 2</span><a class='icon button next' href='/history/page/2/css-anchor-position-1/'></a><a class='icon button last' href='/history/page/2/css-anchor-position-1/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-anchor-position-1/Overview.html:</h3><table class='list tbody' id='history_table'><thead><tr><th>Uploaded</th><th>Revised</th><th>By</th><th>Comment</th><th></th></tr></thead><tbody><th colspan='5'>2025-01-23</th><tr data-revised-hash='58ca71ee587edb09ae161589ba08202e1e288009'><td><a href='/date/2025-01-23T10:07:55/css-anchor-position-1/'>10:07:55 PST</a></td><td>2024-10-12 12:45:30 PDT</td><td><span title='Jonathan Watt'>jonathan-watt</span></td><td>[css-anchor-position-1] Move Accessibility Implications section #11024</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/58ca71ee587edb09ae161589ba08202e1e288009/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2025-01-23T10:07:55/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2025-01-21</th><tr data-revised-hash='c4df8903a5156d783191f3b34f6bde7459caf0b3'><td><a href='/date/2025-01-21T13:27:59/css-anchor-position-1/'>13:27:59 PST</a></td><td>2024-07-17 10:08:39 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>rephrase, add note</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c4df8903a5156d783191f3b34f6bde7459caf0b3/css-anchor-position-1/Overview.bs'></a><a class='bikeshed generating' href='/date/2025-01-21T13:27:59/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-12-11</th><tr data-revised-hash='e3bf278e9ce2e1c567771938add939c4be97d1c0'><td><a href='/date/2024-12-11T10:51:27/css-anchor-position-1/'>10:51:27 PST</a></td><td>2024-11-18 07:38:22 PST</td><td><span title='Brian Kardell'>bkardell</span></td><td>Update css-anchor-position-1/Overview.bs Co-authored-by: Connor Pearson &lt;cjpearson@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e3bf278e9ce2e1c567771938add939c4be97d1c0/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-12-11T10:51:27/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-11-18</th><tr data-revised-hash='70fba546fb0e7973d2ace65f4c0583da01df07dc'><td><a href='/date/2024-11-18T07:38:42/css-anchor-position-1/'>07:38:42 PST</a></td><td>2024-11-18 07:38:22 PST</td><td><span title='Brian Kardell'>bkardell</span></td><td>Update css-anchor-position-1/Overview.bs Co-authored-by: Connor Pearson &lt;cjpearson@users.noreply.github.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70fba546fb0e7973d2ace65f4c0583da01df07dc/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-11-18T07:38:42/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-11-07</th><tr data-revised-hash='09571d7f03a30b5c4160890458c353318df416e8'><td><a href='/date/2024-11-07T05:59:55/css-anchor-position-1/'>05:59:55 PST</a></td><td>2024-10-29 11:15:32 PDT</td><td><span title='Keith Cirkel'>keith_cirkel</span></td><td>make &quot;see prose&quot; value consistent (drop parens from outliers)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/09571d7f03a30b5c4160890458c353318df416e8/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-11-07T05:59:55/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-10-22</th><tr data-revised-hash='e69efbbe57c94735c21371141c31dbc48ed8b79a'><td><a href='/date/2024-10-22T14:22:16/css-anchor-position-1/'>14:22:16 PDT</a></td><td>2024-10-22 14:21:50 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Make anchorpos respect the *current* scroll position of all its anchor references, snapshotted. #10999</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e69efbbe57c94735c21371141c31dbc48ed8b79a/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-22T14:22:16/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-10-14</th><tr data-revised-hash='3d6f6ffa01840d270417c1d16d84e6bc599a9305'><td><a href='/date/2024-10-14T15:12:56/css-anchor-position-1/'>15:12:56 PDT</a></td><td>2024-10-14 15:12:24 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Fix wording. Closes #11029</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3d6f6ffa01840d270417c1d16d84e6bc599a9305/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-14T15:12:56/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-10-07</th><tr data-revised-hash='31921387b9733510a98fba9c837c888164c5292d'><td><a href='/date/2024-10-07T11:06:07/css-anchor-position-1/'>11:06:07 PDT</a></td><td>2024-10-04 16:01:29 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Tweak some links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/31921387b9733510a98fba9c837c888164c5292d/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-07T11:06:07/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-10-04</th><tr data-revised-hash='1af0bdb944be0793b23ddaa71aca344c7589e6c8'><td><a href='/date/2024-10-04T15:33:11/css-anchor-position-1/'>15:33:11 PDT</a></td><td>2024-10-04 15:32:49 PDT</td><td><span>fantasai</span></td><td>[css-anchor-position-1] Correct use of part-like pseudo-element</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1af0bdb944be0793b23ddaa71aca344c7589e6c8/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-04T15:33:11/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='1f8486cf8c995928595db819255c00d8bf82b7f5'><td><a href='/date/2024-10-04T15:30:48/css-anchor-position-1/'>15:30:48 PDT</a></td><td>2024-10-04 15:30:24 PDT</td><td><span>fantasai</span></td><td>[css-anchor-position-1] Clarify which clipping position-visibility cares about</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1f8486cf8c995928595db819255c00d8bf82b7f5/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-04T15:30:48/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='577d287992a5cebfe48a359379a91457def2f3bb'><td><a href='/date/2024-10-04T15:24:44/css-anchor-position-1/'>15:24:44 PDT</a></td><td>2024-10-04 15:24:17 PDT</td><td><span>fantasai</span></td><td>[css-anchor-position-1] element -&gt; box (and other editorial)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/577d287992a5cebfe48a359379a91457def2f3bb/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-04T15:24:44/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='d8232be2618b0a353951288ba3657a1bf81bc6d3'><td><a href='/date/2024-10-04T14:00:44/css-anchor-position-1/'>14:00:44 PDT</a></td><td>2024-10-04 14:00:18 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] fix some of the big texts</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d8232be2618b0a353951288ba3657a1bf81bc6d3/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-04T14:00:44/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='43523ba8fdbf6bce8a10bfaa9789a513c4f2b9e5'><td><a href='/date/2024-10-04T12:56:59/css-anchor-position-1/'>12:56:59 PDT</a></td><td>2024-10-04 12:56:09 PDT</td><td><span>fantasai</span></td><td>[css-anchor-1] Mention position-anchor/area in the intro.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/43523ba8fdbf6bce8a10bfaa9789a513c4f2b9e5/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-04T12:56:59/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='6a7c1ab6cee25a33d34a84a17830405be5e2a2e7'><td><a href='/date/2024-10-04T12:52:11/css-anchor-position-1/'>12:52:11 PDT</a></td><td>2024-10-04 12:51:12 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Fix the other reference to anchor-size() validity. #9827</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6a7c1ab6cee25a33d34a84a17830405be5e2a2e7/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-04T12:52:11/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='2c98738a284c413abcd4dea0023752a221f18eb2'><td><a href='/date/2024-10-04T12:51:08/css-anchor-position-1/'>12:51:08 PDT</a></td><td>2024-10-04 12:50:40 PDT</td><td><span>fantasai</span></td><td>[css-anchor-position-1] Editorial tweaks to note/intro text.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c98738a284c413abcd4dea0023752a221f18eb2/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-10-04T12:51:08/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-09-23</th><tr data-revised-hash='4e65ea7cea18fe39a1bd1732874d1eed913d1942'><td><a href='/date/2024-09-23T12:27:45/css-anchor-position-1/'>12:27:45 PDT</a></td><td>2024-09-23 12:27:25 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>?3x3? ? ?3?3? (#10932) For typographical happiness</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e65ea7cea18fe39a1bd1732874d1eed913d1942/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-09-23T12:27:45/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-09-04</th><tr data-revised-hash='e6552fae12348fcca41bcc06e932fbbc915b0788'><td><a href='/date/2024-09-04T15:50:07/css-anchor-position-1/'>15:50:07 PDT</a></td><td>2024-09-04 15:49:44 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Switch a few of the examples to explicitly use logical props. #8727</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e6552fae12348fcca41bcc06e932fbbc915b0788/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-09-04T15:50:07/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='51ba65f4b562345b554ae568ef2629229928aa5a'><td><a href='/date/2024-09-04T15:25:27/css-anchor-position-1/'>15:25:27 PDT</a></td><td>2024-09-04 15:25:02 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Hm, omitted is definitely the default anchor, not implicit anchor. Must have typo&#039;d.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/51ba65f4b562345b554ae568ef2629229928aa5a/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-09-04T15:25:27/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='e92d708d751d49b0855f100598e72295e25dc5fd'><td><a href='/date/2024-09-04T15:19:05/css-anchor-position-1/'>15:19:05 PDT</a></td><td>2024-09-04 15:18:41 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Remove lingering referenced to the &#039;implicit&#039; keyword. #10312</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e92d708d751d49b0855f100598e72295e25dc5fd/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-09-04T15:19:05/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-08-30</th><tr data-revised-hash='dd8c357f21ed33f2349047816b3169e8ca9a85a1'><td><a href='/date/2024-08-30T15:41:59/css-anchor-position-1/'>15:41:59 PDT</a></td><td>2024-08-30 15:41:35 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Define that env() flips its variable according to the try tactic. #10422</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dd8c357f21ed33f2349047816b3169e8ca9a85a1/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-30T15:41:59/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='77202bc4dea72019f7b8cb3a807b991fbe8c4e04'><td><a href='/date/2024-08-30T15:25:18/css-anchor-position-1/'>15:25:18 PDT</a></td><td>2024-08-30 15:24:48 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] fix indent</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/77202bc4dea72019f7b8cb3a807b991fbe8c4e04/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-30T15:25:18/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='8bfedecba708fe6c58575416435a53c22df5f097'><td><a href='/date/2024-08-30T11:54:34/css-anchor-position-1/'>11:54:34 PDT</a></td><td>2024-08-30 11:54:10 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Added the standard Value Definitions section, so it could hold the note about the flat tree. #10325</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8bfedecba708fe6c58575416435a53c22df5f097/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-30T11:54:34/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='118cdc49dac63bc5e66f85ed62bdd1b47b8265cd'><td><a href='/date/2024-08-30T11:44:49/css-anchor-position-1/'>11:44:49 PDT</a></td><td>2024-08-30 11:44:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Make anchor-size usable in the other accepted @position-try properties. #9827</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/118cdc49dac63bc5e66f85ed62bdd1b47b8265cd/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-30T11:44:49/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='c96a6d11f0b4094718a2b98a901ac93e0f9db670'><td><a href='/date/2024-08-30T11:31:42/css-anchor-position-1/'>11:31:42 PDT</a></td><td>2024-08-30 11:30:48 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Add propdef table for anchor() and anchor-size() so they show up in webref. #10764</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c96a6d11f0b4094718a2b98a901ac93e0f9db670/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-30T11:31:42/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='503edcd7fb488d3586ec86b62be9f0e5aa4ed613'><td><a href='/date/2024-08-30T11:06:45/css-anchor-position-1/'>11:06:45 PDT</a></td><td>2024-08-30 11:06:14 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Rewrite the ordering conditions on &#039;acceptable anchor element&#039; to be more explicit and hopefully clearer.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/503edcd7fb488d3586ec86b62be9f0e5aa4ed613/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-30T11:06:45/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-08-29</th><tr data-revised-hash='aab28fbbca26d67dbc6768c86a30f2b3e4dadeb3'><td><a href='/date/2024-08-29T17:09:45/css-anchor-position-1/'>17:09:45 PDT</a></td><td>2024-08-29 17:09:20 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] For &#039;accceptable anchor element&#039;, rearrange the conditions order, and rename the variables to be easier to read.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aab28fbbca26d67dbc6768c86a30f2b3e4dadeb3/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-29T17:09:45/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='65d17124976239240707b4320f1ce6dd3a1a8a5e'><td><a href='/date/2024-08-29T16:12:16/css-anchor-position-1/'>16:12:16 PDT</a></td><td>2024-08-29 16:10:07 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Clarify that a relpos anchor affects anchor pos, but not a transformed anchor. #10522</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/65d17124976239240707b4320f1ce6dd3a1a8a5e/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-08-29T16:12:16/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-07-17</th><tr data-revised-hash='3b6ef312977cab48303ccdc4f062f227ba0a7c3a'><td><a href='/date/2024-07-17T22:25:52/css-anchor-position-1/'>22:25:52 PDT</a></td><td>2024-07-17 22:25:31 PDT</td><td><span title='Tim Nguyen'>ntim</span></td><td>Update Overview.bs</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3b6ef312977cab48303ccdc4f062f227ba0a7c3a/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-07-17T22:25:52/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='ece30517f0496b07d65369166eaf4705a61614e5'><td><a href='/date/2024-07-17T10:47:15/css-anchor-position-1/'>10:47:15 PDT</a></td><td>2024-07-17 10:08:55 PDT</td><td><span title='Chris Harrelson'>chris_harrelson</span></td><td>[css-anchor-positioning-1] Clarify that an element can anchor to another within the same skipped contents (#10583) * Update Overview.bs * rephrase, add note --------- Co-authored-by: Tab Atkins Jr. &lt;jackalmage@gmail.com&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ece30517f0496b07d65369166eaf4705a61614e5/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-07-17T10:47:15/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-07-16</th><tr data-revised-hash='06b8359c0d4fadb6e8c40d546622429bc56a7568'><td><a href='/date/2024-07-16T16:10:25/css-anchor-position-1/'>16:10:25 PDT</a></td><td>2024-07-16 16:10:04 PDT</td><td><span title='Chris Harrelson'>chris_harrelson</span></td><td>Update Overview.bs</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/06b8359c0d4fadb6e8c40d546622429bc56a7568/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-07-16T16:10:25/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-07-02</th><tr data-revised-hash='dc076841869ec1ee790accad421e3550c35a50cf'><td><a href='/date/2024-07-02T12:15:51/css-anchor-position-1/'>12:15:51 PDT</a></td><td>2024-06-02 05:37:38 PDT</td><td><span title='Jonathan Watt'>jonathan-watt</span></td><td>[css-anchor-position] Add &#039;center&#039; to the &lt;inset-area&gt; variants that are missing it. #10383</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dc076841869ec1ee790accad421e3550c35a50cf/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-07-02T12:15:51/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-07-01</th><tr data-revised-hash='f9752ab71f439b43f794c1b4aa0ef9dccdfd6422'><td><a href='/date/2024-07-01T14:51:27/css-anchor-position-1/'>14:51:27 PDT</a></td><td>2024-07-01 14:51:07 PDT</td><td><span>andruud</span></td><td>[css-anchor-position-1] Rename position-try-options to -fallbacks (#10517) Resolves #10395.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f9752ab71f439b43f794c1b4aa0ef9dccdfd6422/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-07-01T14:51:27/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-06-25</th><tr data-revised-hash='1c037a54b30debedc8c7e11dbd5041c39a553697'><td><a href='/date/2024-06-25T10:53:03/css-anchor-position-1/'>10:53:03 PDT</a></td><td>2024-06-25 10:52:43 PDT</td><td><span title='Brian Kardell'>bkardell</span></td><td>Minor editorial I _think_ this is what was intended?</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1c037a54b30debedc8c7e11dbd5041c39a553697/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-06-25T10:53:03/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-06-05</th><tr data-revised-hash='5d7a32d476772580e6944dce677ef007666214f3'><td><a href='/date/2024-06-05T08:38:42/css-anchor-position-1/'>08:38:42 PDT</a></td><td>2024-06-05 08:38:17 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] markup typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5d7a32d476772580e6944dce677ef007666214f3/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-06-05T08:38:42/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-06-03</th><tr data-revised-hash='dc74c90af259d29455f87077cff5c394083bf7bc'><td><a href='/date/2024-06-03T11:05:59/css-anchor-position-1/'>11:05:59 PDT</a></td><td>2024-05-31 11:57:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-align-3] Rearrange the auto-safety text, and add in the resolution about scroll container content-alignment defaulting to unsafe. #10008</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dc74c90af259d29455f87077cff5c394083bf7bc/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-06-03T11:05:59/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-05-29</th><tr data-revised-hash='d695dc520d5ba092381c0f33292ed0eb87809e84'><td><a href='/date/2024-05-29T14:06:01/css-anchor-position-1/'>14:06:01 PDT</a></td><td>2024-05-29 14:05:25 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-align][css-position][css-anchor-position] Define the new &#039;shift to stay in the original containing block&#039; behavior, and revert the anchor-center &#039;shrink the available space&#039; behavior. #10316 #10315 #9960</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d695dc520d5ba092381c0f33292ed0eb87809e84/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-05-29T14:06:01/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-05-23</th><tr data-revised-hash='4e9fbd82bfaac30a08ee0178c6d515e143531a24'><td><a href='/date/2024-05-23T15:59:13/css-anchor-position-1/'>15:59:13 PDT</a></td><td>2024-05-23 15:17:35 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Move/rephrase the explanatory note a little to make it more obvious.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e9fbd82bfaac30a08ee0178c6d515e143531a24/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-05-23T15:59:13/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-05-15</th><tr data-revised-hash='f27bb5e1261c203cbfd0aa1c2eceb1a84b4593eb'><td><a href='/date/2024-05-15T15:27:01/css-anchor-position-1/'>15:27:01 PDT</a></td><td>2024-05-15 15:26:35 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position-1] Fix the default alignment for a 2-region inset-area. #10313</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f27bb5e1261c203cbfd0aa1c2eceb1a84b4593eb/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-05-15T15:27:01/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='3ec866e4e0c7cc8fa3d05004d20fd13d4d231df3'><td><a href='/date/2024-05-15T15:20:47/css-anchor-position-1/'>15:20:47 PDT</a></td><td>2024-05-15 15:20:21 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position-1] Change position-anchor initial value to &#039;auto&#039;, and only let you specify that behavior in anchor()/anchor-size() via omission. #10312</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3ec866e4e0c7cc8fa3d05004d20fd13d4d231df3/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-05-15T15:20:47/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='08d259319722547c110e9a348b3a72861f857b9f'><td><a href='/date/2024-05-15T15:16:50/css-anchor-position-1/'>15:16:50 PDT</a></td><td>2024-05-15 15:16:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position-1] revert-layer doesn&#039;t do anything special. #10319</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/08d259319722547c110e9a348b3a72861f857b9f/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-05-15T15:16:50/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='5dd2ebf49559d77cc7cfd09551ee26cd2765389e'><td><a href='/date/2024-05-15T15:14:26/css-anchor-position-1/'>15:14:26 PDT</a></td><td>2024-05-15 15:13:50 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position-1] Make position-anchor a reset-only sub-property of position. #10321</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5dd2ebf49559d77cc7cfd09551ee26cd2765389e/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-05-15T15:14:26/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-05-02</th><tr data-revised-hash='b1ec8acff86a7c480cee5e398ce73e1385dbf778'><td><a href='/date/2024-05-02T17:48:41/css-anchor-position-1/'>17:48:41 PDT</a></td><td>2024-05-02 11:27:12 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Add some a11y guidance. #9356</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b1ec8acff86a7c480cee5e398ce73e1385dbf778/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-05-02T17:48:41/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-16</th><tr data-revised-hash='5c806d2aeeb8fe9c53976bd072d275064e5433dc'><td><a href='/date/2024-04-16T09:13:05/css-anchor-position-1/'>09:13:05 PDT</a></td><td>2024-04-16 09:12:35 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Record last-successful position option at the same time as we forget. Specify more precisely *what* is being remembered. #10216</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5c806d2aeeb8fe9c53976bd072d275064e5433dc/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-16T09:13:05/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-15</th><tr data-revised-hash='193d30aa545cc2dd61a739c01a6027c08b4d29ab'><td><a href='/date/2024-04-15T09:59:34/css-anchor-position-1/'>09:59:34 PDT</a></td><td>2024-04-15 09:59:09 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] fix markup</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/193d30aa545cc2dd61a739c01a6027c08b4d29ab/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-15T09:59:34/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-12</th><tr data-revised-hash='c28827768c2747dec95cf14ceb937f19210a43d4'><td><a href='/date/2024-04-12T16:26:43/css-anchor-position-1/'>16:26:43 PDT</a></td><td>2024-04-12 16:26:20 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Provide some detail on exactly what the limitations of scroll adjustment are.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c28827768c2747dec95cf14ceb937f19210a43d4/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-12T16:26:43/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-11</th><tr data-revised-hash='a830f16a34d506137dba0d84dbb399c8bf7abbb0'><td><a href='/date/2024-04-11T16:54:29/css-anchor-position-1/'>16:54:29 PDT</a></td><td>2024-04-11 16:53:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Make it clearer which referent the conditions have. #10184</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a830f16a34d506137dba0d84dbb399c8bf7abbb0/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-11T16:54:29/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='a204dff1909827100f926a234dc5b2729bce7fc5'><td><a href='/date/2024-04-11T14:01:30/css-anchor-position-1/'>14:01:30 PDT</a></td><td>2024-04-11 13:59:15 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Remove issue, it is indeed correct.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a204dff1909827100f926a234dc5b2729bce7fc5/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-11T14:01:30/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='4de1b86b91fffda75b362d7acad474cb6f8e70e9'><td><a href='/date/2024-04-11T13:48:43/css-anchor-position-1/'>13:48:43 PDT</a></td><td>2024-04-11 13:25:04 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] bikeshed fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4de1b86b91fffda75b362d7acad474cb6f8e70e9/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-11T13:48:43/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='09c615c336b7ef669bb102ce2ed127f450ff861e'><td><a href='/date/2024-04-11T13:22:03/css-anchor-position-1/'>13:22:03 PDT</a></td><td>2024-04-11 13:21:40 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Ensure that inset-area gets the same scroll-shifting that manual inset usage does.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/09c615c336b7ef669bb102ce2ed127f450ff861e/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-11T13:22:03/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-10</th><tr data-revised-hash='248701fd1010fd59f966ab3171fdd63f95bbdc2e'><td><a href='/date/2024-04-10T13:23:47/css-anchor-position-1/'>13:23:47 PDT</a></td><td>2024-04-10 13:23:14 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Switch the OM to the @page model. #10108</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/248701fd1010fd59f966ab3171fdd63f95bbdc2e/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-04-10T13:23:47/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='42bd9e7870c9b8844e06501880d4339396fa43dc'><td><a href='/date/2024-04-10T12:58:45/css-anchor-position-1/'>12:58:45 PDT</a></td><td>2024-04-10 12:58:18 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Invalid anchor() or anchor-size() with no fallback is IACVT. #10005</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/42bd9e7870c9b8844e06501880d4339396fa43dc/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-10T12:58:45/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-09</th><tr data-revised-hash='4470179640f8e8f104080313c2a6185fba44d54c'><td><a href='/date/2024-04-09T16:26:11/css-anchor-position-1/'>16:26:11 PDT</a></td><td>2024-04-09 16:25:46 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Redo the previous change, while also reversing the nonsensical breakage introduced in ab022274. #8059</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4470179640f8e8f104080313c2a6185fba44d54c/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-09T16:26:11/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='105d0bd51a8a1170452b557b2b7d6fc40daf8d75'><td><a href='/date/2024-04-09T15:56:44/css-anchor-position-1/'>15:56:44 PDT</a></td><td>2024-04-09 15:56:19 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Fix the use of the scroll snapshot in determining fallback, and close the edge case of a 0-height abspos considered to be fitting in a negative-height CB. #8059</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/105d0bd51a8a1170452b557b2b7d6fc40daf8d75/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-09T15:56:44/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='fe23af89694165ca27f4a8b5bd5aa41d1d93215c'><td><a href='/date/2024-04-09T14:33:58/css-anchor-position-1/'>14:33:58 PDT</a></td><td>2024-04-09 14:33:26 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Rephrase the skipped-contents prevention to be directly in terms of skipping, rather than making things relevant, as that better maps to the spec concepts. #10184</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fe23af89694165ca27f4a8b5bd5aa41d1d93215c/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-09T14:33:58/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='0db2aa1d1cf9af91e315c0b784a4f0a4139264f4'><td><a href='/date/2024-04-09T14:20:36/css-anchor-position-1/'>14:20:36 PDT</a></td><td>2024-04-09 14:20:13 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Specify how flipping exactly works. #10049</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0db2aa1d1cf9af91e315c0b784a4f0a4139264f4/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-09T14:20:36/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-08</th><tr data-revised-hash='15908a86bfc161e4a8a6c8613259011a840bdb04'><td><a href='/date/2024-04-08T17:17:40/css-anchor-position-1/'>17:17:40 PDT</a></td><td>2024-04-08 17:17:17 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Take other scroll adjustments into account. #9071</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/15908a86bfc161e4a8a6c8613259011a840bdb04/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-08T17:17:40/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='31710e3d59ecb4f8eef4c509b0040625d554c28e'><td><a href='/date/2024-04-08T16:53:04/css-anchor-position-1/'>16:53:04 PDT</a></td><td>2024-04-08 16:52:21 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] anchor() and anchor-size() resolve at *computed* time, using interleaving. #8181</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/31710e3d59ecb4f8eef4c509b0040625d554c28e/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-08T16:53:04/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='3b757dcabfc424a314e9066841fdd87130c14227'><td><a href='/date/2024-04-08T15:12:50/css-anchor-position-1/'>15:12:50 PDT</a></td><td>2024-04-08 15:12:27 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Rephrase comment to be more explicit. #8191</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3b757dcabfc424a314e9066841fdd87130c14227/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-04-08T15:12:50/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='4f20744de250c76c311a744f7be12af73f1e2994'><td><a href='/date/2024-04-08T15:02:10/css-anchor-position-1/'>15:02:10 PDT</a></td><td>2024-04-08 15:01:48 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Make strongly-hidden elements also trigger hiding of things depending on them. #7758</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4f20744de250c76c311a744f7be12af73f1e2994/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-04-08T15:02:10/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-05</th><tr data-revised-hash='be611feca999484eff24da081e4ede90fdce3239'><td><a href='/date/2024-04-05T11:28:17/css-anchor-position-1/'>11:28:17 PDT</a></td><td>2024-04-05 11:27:49 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Fix the definitions for position-visibility: anchors-visible</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/be611feca999484eff24da081e4ede90fdce3239/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-04-05T11:28:17/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-04</th><tr data-revised-hash='a21ea2bde66552a267be7b4afd9834067c8f83de'><td><a href='/date/2024-04-04T16:09:22/css-anchor-position-1/'>16:09:22 PDT</a></td><td>2024-04-04 16:08:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] First draft of position-visibility</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a21ea2bde66552a267be7b4afd9834067c8f83de/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-04-04T16:09:22/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-25</th><tr data-revised-hash='b307c559fd822270be7bf253d09eaa629b502dc2'><td><a href='/date/2024-03-25T17:36:55/css-anchor-position-1/'>17:36:55 PDT</a></td><td>2024-03-25 17:36:32 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Specify just how invalid bang-important is. #10058</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b307c559fd822270be7bf253d09eaa629b502dc2/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-03-25T17:36:55/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='32594539af2a0879a789a227af94ad142cb5670d'><td><a href='/date/2024-03-25T17:34:33/css-anchor-position-1/'>17:34:33 PDT</a></td><td>2024-03-25 17:34:08 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Specify where fallback rules live in the cascade. Specify that bang-important is invalid. #10058 #9149</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/32594539af2a0879a789a227af94ad142cb5670d/css-anchor-position-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2024-03-25T17:34:33/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='636484abb5ea7c6a1ddecbad44f426b4512eb9a9'><td><a href='/date/2024-03-25T17:25:18/css-anchor-position-1/'>17:25:18 PDT</a></td><td>2024-03-25 17:24:37 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Add more conditions for forgetting the last remembered @position-try option. #10099</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/636484abb5ea7c6a1ddecbad44f426b4512eb9a9/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-03-25T17:25:18/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='18175246ce96c5b7ee9edef4f60383f326be2579'><td><a href='/date/2024-03-25T17:19:24/css-anchor-position-1/'>17:19:24 PDT</a></td><td>2024-03-25 17:18:56 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Containment doesn&#039;t scope anchor names, but content-skipping does. But anchoring prevents content-skipping from activating. #10040</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/18175246ce96c5b7ee9edef4f60383f326be2579/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-03-25T17:19:24/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-19</th><tr data-revised-hash='9203075d7b4e05a74364ad76aba53d63fc5ccc7c'><td><a href='/date/2024-03-19T09:15:54/css-anchor-position-1/'>09:15:54 PDT</a></td><td>2024-03-19 09:15:26 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Whoops, separate the self and non-self logical axises, they weren&#039;t meant to be mixable.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9203075d7b4e05a74364ad76aba53d63fc5ccc7c/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-03-19T09:15:54/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-14</th><tr data-revised-hash='a1e85968c4a15653d00d8147eca477699de2b48b'><td><a href='/date/2024-03-14T14:23:54/css-anchor-position-1/'>14:23:54 PDT</a></td><td>2024-03-14 14:23:22 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Rename anchor-default to position-anchor. #10004</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a1e85968c4a15653d00d8147eca477699de2b48b/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-03-14T14:23:54/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-12</th><tr data-revised-hash='f76bbbdee86de2e54a34edeadb072c3675c4a507'><td><a href='/date/2024-03-12T15:26:03/css-anchor-position-1/'>15:26:03 PDT</a></td><td>2024-03-12 15:25:35 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] fix the big text (accidentally screwed up by an overzealous spaces-to-tabs regex)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f76bbbdee86de2e54a34edeadb072c3675c4a507/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-03-12T15:26:03/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-11</th><tr data-revised-hash='2607616fb340df079f860795c4bbb002cce7ef30'><td><a href='/date/2024-03-11T13:55:01/css-anchor-position-1/'>13:55:01 PDT</a></td><td>2024-03-11 13:54:28 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Add Elika as editor</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2607616fb340df079f860795c4bbb002cce7ef30/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-03-11T13:55:01/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='1907ee7a4c01f02c261202e5df2f1e8e8ca583b8'><td><a href='/date/2024-03-11T13:20:52/css-anchor-position-1/'>13:20:52 PDT</a></td><td>2024-03-11 13:20:29 PDT</td><td><span>fantasai</span></td><td>[css-anchor-position] Simplify introductory example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1907ee7a4c01f02c261202e5df2f1e8e8ca583b8/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-11T13:20:52/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-08</th><tr data-revised-hash='397ae908d7560d31b8504085e003b927ff4c237a'><td><a href='/date/2024-03-08T11:25:49/css-anchor-position-1/'>11:25:49 PST</a></td><td>2024-03-08 11:25:25 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Explicitly specify that fallback styles are applied as part of a new origin, to make it clearer they win over element-attached styles. #9149</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/397ae908d7560d31b8504085e003b927ff4c237a/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-08T11:25:49/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='b1ff9de0503b38b52ee1f0da498bf6375511f3fd'><td><a href='/date/2024-03-08T11:07:13/css-anchor-position-1/'>11:07:13 PST</a></td><td>2024-03-08 11:06:40 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Specify when last remembered position options are forgotten. Remove issue.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b1ff9de0503b38b52ee1f0da498bf6375511f3fd/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-08T11:07:13/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='b2ab5b889789c5fac89ff5f7603bb46ab1451c82'><td><a href='/date/2024-03-08T09:58:54/css-anchor-position-1/'>09:58:54 PST</a></td><td>2024-03-08 09:58:29 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] typo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b2ab5b889789c5fac89ff5f7603bb46ab1451c82/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-08T09:58:54/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='d5dfdc6bc799577e0473ffcb6463061682eab6bc'><td><a href='/date/2024-03-08T09:57:21/css-anchor-position-1/'>09:57:21 PST</a></td><td>2024-03-08 09:56:00 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Layout containment also scopes anchor names. #9349</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d5dfdc6bc799577e0473ffcb6463061682eab6bc/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-08T09:57:21/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='ef318edce91bd1b3caa4dda879fbd762854c8a04'><td><a href='/date/2024-03-08T09:48:04/css-anchor-position-1/'>09:48:04 PST</a></td><td>2024-03-08 09:47:33 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Comment out the animation section, since we&#039;re punting it to level 2.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ef318edce91bd1b3caa4dda879fbd762854c8a04/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-08T09:48:04/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-07</th><tr data-revised-hash='fc7d268478d1ae6f0d551f36237920010e3d6d33'><td><a href='/date/2024-03-07T13:49:26/css-anchor-position-1/'>13:49:26 PST</a></td><td>2024-03-07 13:48:55 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Remove lingering mentions of fallback-bounds rects</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fc7d268478d1ae6f0d551f36237920010e3d6d33/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-07T13:49:26/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-06</th><tr data-revised-hash='65ab824b3bc25fec422f38ea8c03877470ea1fb0'><td><a href='/date/2024-03-06T13:41:31/css-anchor-position-1/'>13:41:31 PST</a></td><td>2024-03-06 13:41:08 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Rename center-* to span*, all to span-all. #9862</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/65ab824b3bc25fec422f38ea8c03877470ea1fb0/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-06T13:41:31/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-28</th><tr data-revised-hash='aeaed832307afafffbd1c79bb87108e8b2ef65e0'><td><a href='/date/2024-02-28T17:26:22/css-anchor-position-1/'>17:26:22 PST</a></td><td>2024-02-28 17:25:57 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Add anchor-default and inset-area to the allowed props #9950</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aeaed832307afafffbd1c79bb87108e8b2ef65e0/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-28T17:26:22/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='d25dd3b68d63e54406cdf061a45a8c6a18b0d0ff'><td><a href='/date/2024-02-28T16:41:35/css-anchor-position-1/'>16:41:35 PST</a></td><td>2024-02-28 16:41:10 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Remove anchor-position-bounds (replacing with position-container in Position). #9868</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d25dd3b68d63e54406cdf061a45a8c6a18b0d0ff/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-28T16:41:35/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='ca2b41717473d8ade89adbb37daf64cb6421240a'><td><a href='/date/2024-02-28T16:21:39/css-anchor-position-1/'>16:21:39 PST</a></td><td>2024-02-28 16:21:13 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Added &#039;inset-area()&#039; to position-try-options. #9270</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ca2b41717473d8ade89adbb37daf64cb6421240a/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-28T16:21:39/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-26</th><tr data-revised-hash='80213f2d2e2ee0605e42f6c7b8d437fc3ac10dad'><td><a href='/date/2024-02-26T13:54:41/css-anchor-position-1/'>13:54:41 PST</a></td><td>2024-02-26 13:54:17 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] fix example to not talk about @try</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/80213f2d2e2ee0605e42f6c7b8d437fc3ac10dad/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-26T13:54:41/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='c5e7c4671ee8e6817d5236997215da46b9b7a2e0'><td><a href='/date/2024-02-26T13:51:46/css-anchor-position-1/'>13:51:46 PST</a></td><td>2024-02-26 13:48:41 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] More explicitly restrict what pseudos can be an anchor. #8615</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c5e7c4671ee8e6817d5236997215da46b9b7a2e0/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-26T13:51:46/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='644923830d00228e51f72815446df770d8f90844'><td><a href='/date/2024-02-26T13:38:50/css-anchor-position-1/'>13:38:50 PST</a></td><td>2024-02-26 13:38:08 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Generalize the pseudo-elements; no reason to be restrictive here. #8913</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/644923830d00228e51f72815446df770d8f90844/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-26T13:38:50/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-08</th><tr data-revised-hash='270f966b63bdffe6b552929f761e89168e0fea06'><td><a href='/date/2024-02-08T16:06:41/css-anchor-position-1/'>16:06:41 PST</a></td><td>2024-02-08 16:05:34 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-positon][editorial] Fix markup #9180</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/270f966b63bdffe6b552929f761e89168e0fea06/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-08T16:06:41/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='37d5c9fe01edabb556b20fddac49421779b77d14'><td><a href='/date/2024-02-08T16:04:35/css-anchor-position-1/'>16:04:35 PST</a></td><td>2024-02-08 16:03:57 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Fix headings. #9179</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/37d5c9fe01edabb556b20fddac49421779b77d14/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-08T16:04:35/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='0cd3959b0f0f71f27450672c948ad0581626b480'><td><a href='/date/2024-02-08T15:42:33/css-anchor-position-1/'>15:42:33 PST</a></td><td>2024-02-08 15:26:21 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] First draft of animation support, and interleaving concept. #9598</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0cd3959b0f0f71f27450672c948ad0581626b480/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-08T15:42:33/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='5abebf2c851f94c9e0174842944c499ff4f9e932'><td><a href='/date/2024-02-08T13:47:22/css-anchor-position-1/'>13:47:22 PST</a></td><td>2024-02-08 13:46:59 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Fix the OM to the new @position-try rule</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5abebf2c851f94c9e0174842944c499ff4f9e932/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-08T13:47:22/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='f0295300ab8522798b6b3cf21a9a27ee734f53f9'><td><a href='/date/2024-02-08T13:40:31/css-anchor-position-1/'>13:40:31 PST</a></td><td>2024-02-08 13:39:23 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Add more headings</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f0295300ab8522798b6b3cf21a9a27ee734f53f9/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-08T13:40:31/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='b5c7d331bed9a9a599bb4f75396bea040c56ad1b'><td><a href='/date/2024-02-08T12:34:02/css-anchor-position-1/'>12:34:02 PST</a></td><td>2024-02-08 12:33:33 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] remove whitespace from the multiplier syntax</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b5c7d331bed9a9a599bb4f75396bea040c56ad1b/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-02-08T12:34:02/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-06</th><tr data-revised-hash='4fffa0657d9968799ec793faf310586a15d82644'><td><a href='/date/2024-02-06T13:53:09/css-anchor-position-1/'>13:53:09 PST</a></td><td>2024-02-06 13:52:42 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] ||, not &amp;&amp;, as you are allowed to specify just one.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4fffa0657d9968799ec793faf310586a15d82644/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-02-06T13:53:09/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-05</th><tr data-revised-hash='19629b6f29c753cb2eefb171df4fd7b613517e37'><td><a href='/date/2024-02-05T16:09:44/css-anchor-position-1/'>16:09:44 PST</a></td><td>2024-02-05 16:09:12 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Switch inset-area to the new syntax. Specify that it modifies the containing block. #9862 #9598</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/19629b6f29c753cb2eefb171df4fd7b613517e37/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-02-05T16:09:44/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='e488accfd43c2925ec7121eef21b97936a42ba74'><td><a href='/date/2024-02-05T15:16:55/css-anchor-position-1/'>15:16:55 PST</a></td><td>2024-02-05 15:16:26 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Simplify the example code a tiny bit more.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e488accfd43c2925ec7121eef21b97936a42ba74/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-05T15:16:55/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-01</th><tr data-revised-hash='dad5eb2441068f61c82dc699d9d20c79f75d97ed'><td><a href='/date/2024-02-01T16:37:01/css-anchor-position-1/'>16:37:01 PST</a></td><td>2024-02-01 16:36:34 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Make base styles *not* part of the position options list, so it&#039;s not affected by position-try-order sorting.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dad5eb2441068f61c82dc699d9d20c79f75d97ed/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-01T16:37:01/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-01-30</th><tr data-revised-hash='275a81137c9727381ebf8e042d5ddc9725cb37ef'><td><a href='/date/2024-01-30T12:47:18/css-anchor-position-1/'>12:47:18 PST</a></td><td>2024-01-30 12:46:53 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position][editorial] Add note.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/275a81137c9727381ebf8e042d5ddc9725cb37ef/css-anchor-position-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-01-30T12:47:18/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-01-29</th><tr data-revised-hash='036fcd8ce711cc46008d0cea8db06e5634e9659e'><td><a href='/date/2024-01-29T15:55:36/css-anchor-position-1/'>15:55:36 PST</a></td><td>2024-01-29 15:55:13 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position-1] Rather than adjusting double-auto insets to achieve centering, just zero them and adjust available space instead.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/036fcd8ce711cc46008d0cea8db06e5634e9659e/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-01-29T15:55:36/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='9297ca440c4b7272893039f33228c8eadbe1d95b'><td><a href='/date/2024-01-29T14:09:29/css-anchor-position-1/'>14:09:29 PST</a></td><td>2024-01-29 14:09:07 PST</td><td><span title='Rune Lillesveen'>rune</span></td><td>[css-anchor-position-1] Make anchor-name style contained #9100 (#9863) Co-authored-by: Rune Lillesveen &lt;futhark@chromium.org&gt;</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9297ca440c4b7272893039f33228c8eadbe1d95b/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-01-29T14:09:29/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-12-11</th><tr data-revised-hash='6f5cb35ca061210594a6f922eece3504e1972d1e'><td><a href='/date/2023-12-11T13:53:11/css-anchor-position-1/'>13:53:11 PST</a></td><td>2023-12-01 14:59:04 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position-1] Change anchor(auto)/auto-same to outside/inside, remove auto fallback behaviors pending a rewrite.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6f5cb35ca061210594a6f922eece3504e1972d1e/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2023-12-11T13:53:11/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-01-02</th><tr data-revised-hash='5d2acf55c4ca78a05707ea2c0efcffdd89704a00'><td><a href='/date/2024-01-02T14:20:02/css-anchor-position-1/'>14:20:02 PST</a></td><td>2024-01-02 14:18:28 PST</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td>[css-anchor-position-1] Fixed anchor-size() syntax</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5d2acf55c4ca78a05707ea2c0efcffdd89704a00/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-01-02T14:20:02/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-01-26</th><tr data-revised-hash='2c5bd83c87a12500185f6c351bc2b41fadfef888'><td><a href='/date/2024-01-26T16:31:33/css-anchor-position-1/'>16:31:33 PST</a></td><td>2024-01-26 16:30:08 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Redesign position fallbacks. https://github.com/w3c/csswg-drafts/issues/9196#issuecomment-1912788896</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2c5bd83c87a12500185f6c351bc2b41fadfef888/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-01-26T16:31:33/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='4e1bee39f06f170d58c2c446ed592e70a1eb242d'><td><a href='/date/2024-01-26T11:03:01/css-anchor-position-1/'>11:03:01 PST</a></td><td>2024-01-26 11:02:10 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-anchor-position] Remove lingering section talking about anchor() triggering auto fallback. #9362</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e1bee39f06f170d58c2c446ed592e70a1eb242d/css-anchor-position-1/Overview.bs'></a><a class='bikeshed success' href='/date/2024-01-26T11:03:01/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody></table></div><div class='footer'><div class='page_nav'><form accept-charset='utf-8' action='/history/css-anchor-position-1/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-anchor-position-1/' 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-anchor-position-1/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/2/css-anchor-position-1/' method='get'><input type='submit' value='Last'></form></div></div></body></html>

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