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='De5vgZZuiYZU0OQpYW8cov5ni+O56wDlhR5sF6i0Yb4=' 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='De5vgZZuiYZU0OQpYW8cov5ni+O56wDlhR5sF6i0Yb4=' 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='De5vgZZuiYZU0OQpYW8cov5ni+O56wDlhR5sF6i0Yb4=' type='text/javascript'><!-- // --></script><script nonce='De5vgZZuiYZU0OQpYW8cov5ni+O56wDlhR5sF6i0Yb4=' 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-nav-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-nav-1/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/css-nav-1/'>Home</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 1</span><span class='icon button next disabled'></span><span class='icon button last disabled'></span></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for css-nav-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'>2024-07-29</th><tr data-revised-hash='dda1a37307b9802cb640a1b1a5fc537dc58cf17e'><td><a href='/date/2024-07-29T07:54:06/css-nav-1/'>07:54:06 PDT</a></td><td>2024-07-29 07:53:45 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Fix spurious / in &lt;img&gt; (#10630)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dda1a37307b9802cb640a1b1a5fc537dc58cf17e/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-07-29T07:54:06/bikeshed/css-nav-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-03-01</th><tr data-revised-hash='814b46c82a3fdd259c9ead581458bc04df7b3c69'><td><a href='/date/2023-03-01T14:08:26/css-nav-1/'>14:08:26 PST</a></td><td>2023-03-01 14:08:02 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-nav-1] Define properties with animation type (#8422)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/814b46c82a3fdd259c9ead581458bc04df7b3c69/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-03-01T14:08:26/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-05-17</th><tr data-revised-hash='dfe5f345ac420eb0f68ef11b2dd22835d623a876'><td><a href='/date/2021-05-17T14:26:46/css-nav-1/'>14:26:46 PDT</a></td><td>2021-05-17 14:24:15 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Revert &quot;Revert &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot;&quot; This reverts commit 9d14c2393cfeca05c799d43444fe9c860074e80b. The commit that it was reverting was actually fine; it was a merge, but looked like it was bad because it had a large diff against the first parent but it had no diff against the second (which was the relevant one in a &quot;linear history&quot; of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-05-17T14:26:46/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-revised-hash='70d026dcb8e01b8e3b0898968180c45a2d0da901'><td><a href='/date/2021-05-17T13:52:15/css-nav-1/'>13:52:15 PDT</a></td><td>2021-05-17 12:25:01 PDT</td><td><span title='Adam Argyle'>adam_argyle</span></td><td>Revert &quot;Merge branch &#039;main&#039; of https://github.com/w3c/csswg-drafts into main&quot; This reverts commit 442ca50fbfe14f5e163336a54844ba447d2bafa7, reversing changes made to d0337ce2a834e083954a3b090fd69ea918a0302a.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70d026dcb8e01b8e3b0898968180c45a2d0da901/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-05-17T13:52:15/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-04-08</th><tr data-revised-hash='0b6d15a45fddffa52282a39fcd4edb314ecb103b'><td><a href='/date/2021-04-08T22:08:13/css-nav-1/'>22:08:13 PDT</a></td><td>2021-04-08 22:06:02 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Use consistant capitalization for &quot;user agent&quot; Also checks in a little script that helps in doing this semi-automatically.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0b6d15a45fddffa52282a39fcd4edb314ecb103b/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2021-04-08T22:08:13/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-11-09</th><tr data-revised-hash='f79e381bbc7d30ac1adb831f72cd529c9e9e7f01'><td><a href='/date/2020-11-09T12:55:30/css-nav-1/'>12:55:30 PST</a></td><td>2020-11-09 12:55:09 PST</td><td><span>fantasai</span></td><td>s/privsec/priv-sec/g for consistency. (priv-sec was most prevalent)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f79e381bbc7d30ac1adb831f72cd529c9e9e7f01/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-11-09T12:55:30/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-09-18</th><tr data-revised-hash='6184bac8cb021eb858f4ee36559aad2fc9790aa3'><td><a href='/date/2020-09-18T15:42:57/css-nav-1/'>15:42:57 PDT</a></td><td>2020-09-18 14:48:54 PDT</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td>Removed duplicate &quot;keywords&quot; from Value Definitions section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6184bac8cb021eb858f4ee36559aad2fc9790aa3/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-18T15:42:57/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-08-18</th><tr data-revised-hash='1ba4649fcd4e97e9521d93b74868e0c339f178f4'><td><a href='/date/2020-08-18T14:13:10/css-nav-1/'>14:13:10 PDT</a></td><td>2020-08-18 09:33:43 PDT</td><td><span>autokagami</span></td><td>[css-nav-1] Align with Web IDL specification</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1ba4649fcd4e97e9521d93b74868e0c339f178f4/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-08-18T14:13:10/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-04-01</th><tr data-revised-hash='89f7a3d108969f8cf97b0455b6b12e9158ef69c6'><td><a href='/date/2020-04-01T21:05:55/css-nav-1/'>21:05:55 PDT</a></td><td>2020-04-01 20:15:48 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[css-nav-1] Spell check.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/89f7a3d108969f8cf97b0455b6b12e9158ef69c6/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-04-01T21:05:55/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-02-22</th><tr data-revised-hash='5723c2bebc1f76943a4535fb5c1c72a7f21cf2c3'><td><a href='/date/2020-02-22T08:36:08/css-nav-1/'>08:36:08 PST</a></td><td>2020-02-22 08:35:50 PST</td><td><span>autokagami</span></td><td>[css-nav-1] Align with Web IDL specification (#4798)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5723c2bebc1f76943a4535fb5c1c72a7f21cf2c3/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-02-22T08:36:08/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-01-16</th><tr data-revised-hash='fbc565e83f1ec2cf382c43e7931c533dc77e07cf'><td><a href='/date/2020-01-16T16:21:27/css-nav-1/'>16:21:27 PST</a></td><td>2020-01-16 16:20:52 PST</td><td><span>fantasai</span></td><td>[meta] Align value definition reference across all specs. Use more obvious heading. Include link to definition syntax directly. #1397</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbc565e83f1ec2cf382c43e7931c533dc77e07cf/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-01-16T16:21:27/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2020-01-14</th><tr data-revised-hash='dc72bed4fafeb7a8fd1b7eec655446c380cd10e7'><td><a href='/date/2020-01-14T12:57:18/css-nav-1/'>12:57:18 PST</a></td><td>2020-01-14 12:56:40 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[various] Editorial link fixes (and some incidental ws fixes).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dc72bed4fafeb7a8fd1b7eec655446c380cd10e7/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-01-14T12:57:18/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-26</th><tr data-revised-hash='3aac20e78ee3fac75bff56801229369f9ca23a9f'><td><a href='/date/2019-11-26T16:59:11/css-nav-1/'>16:59:11 PST</a></td><td>2019-11-26 16:58:50 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix indentation error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3aac20e78ee3fac75bff56801229369f9ca23a9f/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-11-26T16:59:11/bikeshed/css-nav-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='ddcc7ab16d33227f9f0550d27ac61a763b48a281'><td><a href='/date/2019-11-26T01:29:41/css-nav-1/'>01:29:41 PST</a></td><td>2019-11-26 01:29:16 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add a link to the newly published wd</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ddcc7ab16d33227f9f0550d27ac61a763b48a281/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-26T01:29:41/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-25</th><tr data-revised-hash='c7b97b3215cfd584860f97efeec95f1a8e8d8ecf'><td><a href='/date/2019-11-25T22:35:43/css-nav-1/'>22:35:43 PST</a></td><td>2019-11-25 22:35:18 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add a link for the previous version</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c7b97b3215cfd584860f97efeec95f1a8e8d8ecf/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-25T22:35:43/bikeshed/css-nav-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='e3824390f88de74d6d62c0ff833359926c6a51e4'><td><a href='/date/2019-11-25T21:37:29/css-nav-1/'>21:37:29 PST</a></td><td>2019-11-25 21:36:55 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix errors from HTML validator</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e3824390f88de74d6d62c0ff833359926c6a51e4/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-25T21:37:29/bikeshed/css-nav-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='f0538a6b71710a090c761e3d53d564b66aa9dc52'><td><a href='/date/2019-11-25T20:51:28/css-nav-1/'>20:51:28 PST</a></td><td>2019-11-25 20:51:02 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix broken URI fragments</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f0538a6b71710a090c761e3d53d564b66aa9dc52/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-11-25T20:51:28/bikeshed/css-nav-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='20c0512a42f079c9e28be815a8ea9ecb2d4864a7'><td><a href='/date/2019-11-25T18:21:53/css-nav-1/'>18:21:53 PST</a></td><td>2019-11-25 18:21:29 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add the change section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/20c0512a42f079c9e28be815a8ea9ecb2d4864a7/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-11-25T18:21:53/bikeshed/css-nav-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='7f13061c0473f61b063bd6b738a84d647ba65196'><td><a href='/date/2019-11-25T01:33:40/css-nav-1/'>01:33:40 PST</a></td><td>2019-11-25 01:33:15 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix the mistake in processing model If the best candidate is found, &quot;navbeforefocus&quot; event should be fired. (not &quot;navnotarget&quot;)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7f13061c0473f61b063bd6b738a84d647ba65196/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-11-25T01:33:40/bikeshed/css-nav-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='144ed58006ac4c594f5e05439c143c65f876cba4'><td><a href='/date/2019-11-25T01:23:14/css-nav-1/'>01:23:14 PST</a></td><td>2019-11-25 01:18:38 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix the typo error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/144ed58006ac4c594f5e05439c143c65f876cba4/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-11-25T01:23:14/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-20</th><tr data-revised-hash='4cc6f025ff2353bd022f0ebc8775236c4609f887'><td><a href='/date/2019-11-20T18:28:03/css-nav-1/'>18:28:03 PST</a></td><td>2019-11-20 18:20:49 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>Merge remote-tracking branch &#039;upstream/master&#039; into improve-processing-model</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4cc6f025ff2353bd022f0ebc8775236c4609f887/css-nav-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-11-20T18:28:03/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-11</th><tr data-revised-hash='f09c387b82e398892dd166fb4b1bc75298c25498'><td><a href='/date/2019-11-11T22:35:31/css-nav-1/'>22:35:31 PST</a></td><td>2019-11-11 22:35:05 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Drop `inside` option from spatialNavigationSearch API Drop `inside` option from `spatialNavigationSearch` because it&#039;s risky</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f09c387b82e398892dd166fb4b1bc75298c25498/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-11T22:35:31/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-07</th><tr data-revised-hash='b570a98de6f5134c8407e6218f5378c1dc0545e2'><td><a href='/date/2019-11-07T21:25:34/css-nav-1/'>21:25:34 PST</a></td><td>2019-11-07 21:25:10 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Modify how to select candidates for partially overlapped case Modify the way to select candidates for partially overlapped element with the search origin element. More detail condition about how elements are overlapped leaves to the UA.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b570a98de6f5134c8407e6218f5378c1dc0545e2/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-07T21:25:34/bikeshed/css-nav-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='f00d40e1b28f36533da9b460587f8bb412d7ad6c'><td><a href='/date/2019-11-07T17:44:21/css-nav-1/'>17:44:21 PST</a></td><td>2019-11-07 17:43:52 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Change the image files (to transparent)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f00d40e1b28f36533da9b460587f8bb412d7ad6c/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-07T17:44:21/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-06</th><tr data-revised-hash='479382563e6fc9bbab523c0120472741cfc3e6fe'><td><a href='/date/2019-11-06T20:47:23/css-nav-1/'>20:47:23 PST</a></td><td>2019-11-06 20:46:43 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Modify the inheritance of spatial-navigation-function Reason: This property is equivalent with `spatial-navigation-action` in terms of inheritance feature</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/479382563e6fc9bbab523c0120472741cfc3e6fe/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-06T20:47:23/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-05</th><tr data-revised-hash='ce8f92f58565cda8a32b7c2035fc97fb57a294f5'><td><a href='/date/2019-11-05T02:11:02/css-nav-1/'>02:11:02 PST</a></td><td>2019-11-05 02:01:45 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix the markup for hiding API description</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ce8f92f58565cda8a32b7c2035fc97fb57a294f5/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-05T02:11:02/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-11-04</th><tr data-revised-hash='3d29829493002ba72b076ea6579de003ff07e3e4'><td><a href='/date/2019-11-04T23:58:03/css-nav-1/'>23:58:03 PST</a></td><td>2019-11-04 23:57:43 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix link errors</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3d29829493002ba72b076ea6579de003ff07e3e4/css-nav-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-11-04T23:58:03/bikeshed/css-nav-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='f2ef5fd62718540c46940c841fe6c3453cfa5456'><td><a href='/date/2019-11-04T23:49:49/css-nav-1/'>23:49:49 PST</a></td><td>2019-11-04 23:49:28 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix the indentation error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f2ef5fd62718540c46940c841fe6c3453cfa5456/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-11-04T23:49:49/bikeshed/css-nav-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='e8f8026a75a1e8a258d8d8849998d68adb964f38'><td><a href='/date/2019-11-04T22:59:16/css-nav-1/'>22:59:16 PST</a></td><td>2019-11-04 22:58:52 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>Modify the description of spatialNavigationSearch()</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e8f8026a75a1e8a258d8d8849998d68adb964f38/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-04T22:59:16/bikeshed/css-nav-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='70247a70288dfe5d7ccb41384e5e79d3433a9145'><td><a href='/date/2019-11-04T22:04:56/css-nav-1/'>22:04:56 PST</a></td><td>2019-11-04 22:04:36 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>Modify the description of focusableArea * Remove redundant description (Finding focusable areas already returns DOM anchor, therefore `anchor` variable isn&#039;t necessary.)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70247a70288dfe5d7ccb41384e5e79d3433a9145/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-04T22:04:56/bikeshed/css-nav-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='66b6d428c598f8be1a24c9175ec6262419b1af26'><td><a href='/date/2019-11-04T22:00:02/css-nav-1/'>22:00:02 PST</a></td><td>2019-11-04 21:59:40 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Minor expression changes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/66b6d428c598f8be1a24c9175ec6262419b1af26/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-04T22:00:02/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-30</th><tr data-revised-hash='94a3dce904129b7d9537efb0ab16e60c2123c7bb'><td><a href='/date/2019-09-30T21:32:34/css-nav-1/'>21:32:34 PDT</a></td><td>2019-09-30 17:42:37 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Tweak description of the example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/94a3dce904129b7d9537efb0ab16e60c2123c7bb/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-30T21:32:34/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-27</th><tr data-revised-hash='0442bddd35dd346939e395c63c1e326e5bd10bc4'><td><a href='/date/2019-09-27T00:57:55/css-nav-1/'>00:57:55 PDT</a></td><td>2019-09-27 00:57:29 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Clear description about updating search origin Make the process of updating search origin more clear, depending on the discussion in https://github.com/w3c/csswg-drafts/pull/4309</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0442bddd35dd346939e395c63c1e326e5bd10bc4/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-27T00:57:55/bikeshed/css-nav-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='480b08ceb653a2cccd87ce24bc03513229cef63e'><td><a href='/date/2019-09-27T00:42:43/css-nav-1/'>00:42:43 PDT</a></td><td>2019-09-27 00:42:19 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Modify IDL of spatialNavigationSearch Related to https://github.com/w3c/csswg-drafts/issues/3743</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/480b08ceb653a2cccd87ce24bc03513229cef63e/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-27T00:42:43/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-25</th><tr data-revised-hash='85450a5267274c2cd641af8c3f7fe3690c8f877e'><td><a href='/date/2019-09-25T01:34:48/css-nav-1/'>01:34:48 PDT</a></td><td>2019-09-25 01:34:23 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix the wrong description Fix the wrong description about selecting the candidate which doesn&#039;t overlap with search origin before measuring the distance.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/85450a5267274c2cd641af8c3f7fe3690c8f877e/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-25T01:34:48/bikeshed/css-nav-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='51959d89ace40ad5d973eb4edd4d23ecdcc2fa50'><td><a href='/date/2019-09-25T01:20:57/css-nav-1/'>01:20:57 PDT</a></td><td>2019-09-24 00:17:13 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix the unreachability for a focusable element inside the search origin Consider the focusable element which fully overlaps with another focusable element. Detailed changes are as below: 1. Add another condition to the definition of &#039;inside area&#039; * To consider the focusable element which fully overlaps with search origin as a candidate for enabling the focus to move there. 2. Make the difference the way to select &#039;insider&#039; depending on wheather the search origin is a spatial navigation container or not * If the search origin is container, consider the partially visible focusables as the insider. * Else (if the search origin is the general element), consider only the fully overlapped focusables as the insider. * NOTE: The partially overlapped focusable isn&#039;t included in the set of insider. 3. Modify the way to select candidates among visible focusable elements * To measure the distance from the elements which is outside to the search origin. Close https://github.com/w3c/csswg-drafts/issues/3386</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/51959d89ace40ad5d973eb4edd4d23ecdcc2fa50/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-25T01:20:57/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-23</th><tr data-revised-hash='001d5a186f1277ba93e1b39a8cd1567e8ee8f038'><td><a href='/date/2019-09-23T01:38:40/css-nav-1/'>01:38:40 PDT</a></td><td>2019-09-23 01:36:38 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Simplify the description of processing model Hide the description related to css property (`spatial-navigation-action`) from the processing model by option</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/001d5a186f1277ba93e1b39a8cd1567e8ee8f038/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-23T01:38:40/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-22</th><tr data-revised-hash='694d9920824639b646eef021fa439c5bbaf8e033'><td><a href='/date/2019-09-22T18:51:35/css-nav-1/'>18:51:35 PDT</a></td><td>2019-09-15 18:27:17 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Update the search origin after scrolling The search origin will be updated only when the old focus target is completely off-screen after the scrolling. (Note: If the old focus target is partially in the view after scrolling, the search origin won&#039;t be changed) Related issue: https://github.com/w3c/csswg-drafts/issues/3392</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/694d9920824639b646eef021fa439c5bbaf8e033/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-09-22T18:51:35/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-15</th><tr data-revised-hash='f5a71245af76297958dd3f6619a25825c871432f'><td><a href='/date/2019-09-15T17:47:18/css-nav-1/'>17:47:18 PDT</a></td><td>2019-09-15 17:47:07 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add the link for updating the search origin step</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f5a71245af76297958dd3f6619a25825c871432f/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-15T17:47:18/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-10</th><tr data-revised-hash='fbe133f084a43a31c9ac53dceaf4c6259bb51e01'><td><a href='/date/2019-09-10T19:25:30/css-nav-1/'>19:25:30 PDT</a></td><td>2019-09-10 19:25:07 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Modiy more precise description for setting search origin</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbe133f084a43a31c9ac53dceaf4c6259bb51e01/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-09-10T19:25:30/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-06</th><tr data-revised-hash='96748d831f00cd96867c421f621dcae6a4a89cda'><td><a href='/date/2019-09-06T01:32:58/css-nav-1/'>01:32:58 PDT</a></td><td>2019-09-06 01:32:37 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix a link error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/96748d831f00cd96867c421f621dcae6a4a89cda/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-09-06T01:32:58/bikeshed/css-nav-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='6c83e02686103b764c1cc0b1c75fa6a446811c5a'><td><a href='/date/2019-09-06T01:28:38/css-nav-1/'>01:28:38 PDT</a></td><td>2019-09-06 01:28:13 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] More precise description when the focus target loses the focus Search origin should be set again if the focus target loses the focus. More detailed cases are (1) the focus target removed from the page (2) the focus target becomes invisible or disabled Therefore, more description about above cases had been added. (1) Remove Reference: * https://html.spec.whatwg.org/#data-model * https://html.spec.whatwg.org/multipage/infrastructure.html#nodes-are-removed</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6c83e02686103b764c1cc0b1c75fa6a446811c5a/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-09-06T01:28:38/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-09-05</th><tr data-revised-hash='d0699887cc8eb706a041906ab8723c16deb85757'><td><a href='/date/2019-09-05T06:41:30/css-nav-1/'>06:41:30 PDT</a></td><td>2019-09-05 06:41:08 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add more details about how to set the search origin * Add how to set the search origin depending on its status change * Add precise definition about `search origin` and `spatial navigation starting point` * Seperate the &quot;set the search origin&quot; step from the processing model * related to https://github.com/w3c/csswg-drafts/issues/3391</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d0699887cc8eb706a041906ab8723c16deb85757/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-09-05T06:41:30/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-08-02</th><tr data-revised-hash='c4902b7a7d75ecd81cfd7bdbb2e9c2b25a50b851'><td><a href='/date/2019-08-02T01:45:46/css-nav-1/'>01:45:46 PDT</a></td><td>2019-08-02 01:44:43 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add the name to the argument Add the name to the argument for clearer reference</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c4902b7a7d75ecd81cfd7bdbb2e9c2b25a50b851/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-08-02T01:45:46/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-08-01</th><tr data-revised-hash='28ed53488ac19468a3faab28cd68a14b816305bd'><td><a href='/date/2019-08-01T03:10:29/css-nav-1/'>03:10:29 PDT</a></td><td>2019-08-01 03:10:03 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Define the inside area in general Define &quot;inside area&quot; in general and use that term elsewhere.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/28ed53488ac19468a3faab28cd68a14b816305bd/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-08-01T03:10:29/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-06-20</th><tr data-revised-hash='8586cb1a092312aa803eac47d24f093b686def10'><td><a href='/date/2019-06-20T19:09:35/css-nav-1/'>19:09:35 PDT</a></td><td>2019-06-20 19:09:18 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix the link error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8586cb1a092312aa803eac47d24f093b686def10/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-06-20T19:09:35/bikeshed/css-nav-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='9bfb7f5a7e228c7e197e993094180329a6072b76'><td><a href='/date/2019-06-20T19:07:20/css-nav-1/'>19:07:20 PDT</a></td><td>2019-06-20 19:07:00 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix and upate the description Update the description about `spatial-navigation-function`</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9bfb7f5a7e228c7e197e993094180329a6072b76/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-06-20T19:07:20/bikeshed/css-nav-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='acf023e0b3c8e85fe3048b3998305895aba7b2ac'><td><a href='/date/2019-06-20T02:00:50/css-nav-1/'>02:00:50 PDT</a></td><td>2019-06-20 01:58:53 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add spatial-navigation-function CSS property During the CSS WG F2F, it was resolved to add `spatial-navigation-function` CSS property. This property is used for setting the focus navigation algorithm with the predefined values. Close https://github.com/w3c/csswg-drafts/issues/3964</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/acf023e0b3c8e85fe3048b3998305895aba7b2ac/css-nav-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-06-20T02:00:50/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-06-13</th><tr data-revised-hash='5dedf3df148f096aa1848800a625e4a2271b7862'><td><a href='/date/2019-06-13T02:57:03/css-nav-1/'>02:57:03 PDT</a></td><td>2019-06-13 02:56:39 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Modify the condition of candidates for custom spatial navigation container Close https://github.com/w3c/csswg-drafts/issues/3965</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5dedf3df148f096aa1848800a625e4a2271b7862/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-06-13T02:57:03/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-06-07</th><tr data-revised-hash='939c1c6e3e7b1ac8ea8997c8dd58590858d9b5fa'><td><a href='/date/2019-06-07T11:10:18/css-nav-1/'>11:10:18 PDT</a></td><td>2019-06-07 11:09:41 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Add w3cids for editors.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/939c1c6e3e7b1ac8ea8997c8dd58590858d9b5fa/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-06-07T11:10:18/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-05-08</th><tr data-revised-hash='cf2c50b9a66ad8b71cabfaa2f8d25eb90147d5ea'><td><a href='/date/2019-05-08T01:32:06/css-nav-1/'>01:32:06 PDT</a></td><td>2019-05-08 01:31:43 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix `alignBias` definition Fix the mistake about `alignBias` definition depending on the original proposal. (+ Remove trailing spaces) Reference: - https://wicg.github.io/spatial-navigation/tests/ux/result.html#2-add-the-factor-about-calculating-the-degree-of-alignment-between-a-candidate-and-the-search-origin - w3c#3388 (comment)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cf2c50b9a66ad8b71cabfaa2f8d25eb90147d5ea/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-05-08T01:32:06/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-04-25</th><tr data-revised-hash='faaa2d07bdab75d3edf0beea43afb5bf1f015e2f'><td><a href='/date/2019-04-25T19:46:00/css-nav-1/'>19:46:00 PDT</a></td><td>2019-04-25 19:45:37 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Change the result of getSpatialNavigationContainer() Relate to: https://github.com/w3c/csswg-drafts/issues/3743#issuecomment-486160981</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/faaa2d07bdab75d3edf0beea43afb5bf1f015e2f/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-04-25T19:46:00/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-04-23</th><tr data-revised-hash='2fd68744a2eabe7a3cc7901dda7d8fed5433b4f2'><td><a href='/date/2019-04-23T16:48:30/css-nav-1/'>16:48:30 PDT</a></td><td>2019-04-23 16:48:09 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Add the link of published draft</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2fd68744a2eabe7a3cc7901dda7d8fed5433b4f2/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-04-23T16:48:30/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-04-07</th><tr data-revised-hash='58314e21fb539f279cbe81a3b8daaec093cabc4a'><td><a href='/date/2019-04-07T23:25:31/css-nav-1/'>23:25:31 PDT</a></td><td>2019-04-07 23:25:07 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Fix a link error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/58314e21fb539f279cbe81a3b8daaec093cabc4a/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-04-07T23:25:31/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-04-05</th><tr data-revised-hash='647b4fa201867e803497cf68950c2553879c8745'><td><a href='/date/2019-04-05T02:21:41/css-nav-1/'>02:21:41 PDT</a></td><td>2019-04-04 23:36:42 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Clarify how the improve distance function works</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/647b4fa201867e803497cf68950c2553879c8745/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-04-05T02:21:41/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-04-03</th><tr data-revised-hash='df8e07d235d5930e81a55ab377890524e3a1c2bf'><td><a href='/date/2019-04-03T19:11:53/css-nav-1/'>19:11:53 PDT</a></td><td>2019-04-03 19:11:26 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>Merge branch &#039;master&#039; into add-spatnav-action</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/df8e07d235d5930e81a55ab377890524e3a1c2bf/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-04-03T19:11:53/bikeshed/css-nav-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='43e92fb20d42a4d3d0916127287d77cb00fc61c8'><td><a href='/date/2019-04-03T18:21:37/css-nav-1/'>18:21:37 PDT</a></td><td>2019-04-03 01:20:43 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>Fix link errors</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/43e92fb20d42a4d3d0916127287d77cb00fc61c8/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-04-03T18:21:37/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-03-28</th><tr data-revised-hash='2981a79ee6814ff67e7a721f26c82dda45f6361b'><td><a href='/date/2019-03-28T23:41:17/css-nav-1/'>23:41:17 PDT</a></td><td>2019-03-28 23:40:32 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>Merge branch &#039;master&#039; into improve-distance-function</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2981a79ee6814ff67e7a721f26c82dda45f6361b/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-03-28T23:41:17/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-03-25</th><tr data-revised-hash='2040f6522aa6d8e324dbcdc1c61abbc8d0a0cda1'><td><a href='/date/2019-03-25T23:03:22/css-nav-1/'>23:03:22 PDT</a></td><td>2019-03-25 23:03:09 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>Merge pull request #3729 from jihyerish/drop-navbeforescroll [css-nav-1] Drop navbeforescroll event</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2040f6522aa6d8e324dbcdc1c61abbc8d0a0cda1/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-03-25T23:03:22/bikeshed/css-nav-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='165b09a3b28924c75f6d1b697cfea0011909b7a8'><td><a href='/date/2019-03-25T19:14:19/css-nav-1/'>19:14:19 PDT</a></td><td>2019-03-25 19:10:13 PDT</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Modify the explanation about focusableAreas * Modify the method steps of the API * Add an example of the API</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/165b09a3b28924c75f6d1b697cfea0011909b7a8/css-nav-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-03-25T19:14:19/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2019-02-25</th><tr data-revised-hash='dfef5d68ab33390a06302e467394eef3a05fadb6'><td><a href='/date/2019-02-25T21:56:09/css-nav-1/'>21:56:09 PST</a></td><td>2019-02-25 21:55:50 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Mention open issue on naming the window.navigate API</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfef5d68ab33390a06302e467394eef3a05fadb6/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2019-02-25T21:56:09/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-12-04</th><tr data-revised-hash='9fe938510c6257d653874e57de1b4a4149e4d4ab'><td><a href='/date/2018-12-04T16:20:50/css-nav-1/'>16:20:50 PST</a></td><td>2018-12-04 16:08:05 PST</td><td><span title='Jihye Hong'>jh.hong</span></td><td>[css-nav-1] Update the status of issues - Remove the resolved issue (#28 in WICG) - Fix the link of the issue from WICG repo to CSSWG repo</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9fe938510c6257d653874e57de1b4a4149e4d4ab/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-12-04T16:20:50/bikeshed/css-nav-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='4e7915090adefd34cdd6c71e93662d4d1a879840'><td><a href='/date/2018-12-04T01:31:35/css-nav-1/'>01:31:35 PST</a></td><td>2018-12-04 01:30:17 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Delete stale issue Shadow DOM is not explicitely mentioend, but it is taken into account via the various algorithms that the spec invokes, such as event dispatching.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4e7915090adefd34cdd6c71e93662d4d1a879840/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-12-04T01:31:35/bikeshed/css-nav-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='6e10c4dc592b342ad95d619807391d08199ef630'><td><a href='/date/2018-12-04T01:22:57/css-nav-1/'>01:22:57 PST</a></td><td>2018-12-04 01:21:10 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Gate the navigation events on a policy-controlled feature Closes #3390</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6e10c4dc592b342ad95d619807391d08199ef630/css-nav-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-12-04T01:22:57/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-12-03</th><tr data-revised-hash='887e3164f51ad208deff75bb5b4bcbef8ef10acc'><td><a href='/date/2018-12-03T22:42:20/css-nav-1/'>22:42:20 PST</a></td><td>2018-12-03 22:41:01 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Disambiguate between two similar terms Closes #3389</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/887e3164f51ad208deff75bb5b4bcbef8ef10acc/css-nav-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-12-03T22:42:20/bikeshed/css-nav-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='2e1ff8fa0c40d0065c83bab4eb6db61b91cd94ca'><td><a href='/date/2018-12-03T00:22:12/css-nav-1/'>00:22:12 PST</a></td><td>2018-12-03 00:21:13 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Remove link to old issue tracker All open issues have been migrated, no need to keep pointing people to it.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2e1ff8fa0c40d0065c83bab4eb6db61b91cd94ca/css-nav-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-12-03T00:22:12/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2018-11-15</th><tr data-revised-hash='4473578a6fdb3df26c10a6ffdcd85b52ea515828'><td><a href='/date/2018-11-15T21:20:03/css-nav-1/'>21:20:03 PST</a></td><td>2018-11-15 21:19:41 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Conform to typical CSS spec naming conventions</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4473578a6fdb3df26c10a6ffdcd85b52ea515828/css-nav-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-11-15T21:20:03/bikeshed/css-nav-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='8775a52857944acc66e6e90fb9024fa84b482636'><td><a href='/date/2018-11-15T20:59:55/css-nav-1/'>20:59:55 PST</a></td><td>2018-11-15 00:25:33 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-nav-1] Update metadata This is a csswg spec now, update metadata accordingly</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8775a52857944acc66e6e90fb9024fa84b482636/css-nav-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-11-15T20:59:55/bikeshed/css-nav-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-nav-1/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/css-nav-1/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 1</span><form accept-charset='utf-8' action='/history/page/2/css-nav-1/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/css-nav-1/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>

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