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='YAS+9T/S61YWAERILV8J+fA8rUiTqCqCAPpQTFe+GIc=' 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='YAS+9T/S61YWAERILV8J+fA8rUiTqCqCAPpQTFe+GIc=' 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='YAS+9T/S61YWAERILV8J+fA8rUiTqCqCAPpQTFe+GIc=' type='text/javascript'><!-- // --></script><script nonce='YAS+9T/S61YWAERILV8J+fA8rUiTqCqCAPpQTFe+GIc=' 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="resize-observer-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/resize-observer-1/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/resize-observer-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 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 resize-observer-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'>2023-01-27</th><tr data-revised-hash='b10ff371a74dfa773415edb19089d31ebc0cb4dc'><td><a href='/date/2023-01-27T05:57:41/resize-observer-1/'>05:57:41 PST</a></td><td>2023-01-27 05:48:16 PST</td><td><span title='Oriol Brufau'>oriol</span></td><td>[resize-observer-1][editorial] Fix broken "viewport" reference It's no longer defined in css-position-3, link to CSS2 instead. Fixes #8368</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b10ff371a74dfa773415edb19089d31ebc0cb4dc/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2023-01-27T05:57:41/bikeshed/resize-observer-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'>2022-10-04</th><tr data-revised-hash='25641ed33b1269af46a1ff2368a1545bf245a424'><td><a href='/date/2022-10-04T05:58:56/resize-observer-1/'>05:58:56 PDT</a></td><td>2022-10-04 02:21:27 PDT</td><td><span title='Emilio Cobos Álvarez'>emilio</span></td><td>[resize-observer] Remove HTML monkey patch. This is now upstream. Fixes #4824</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/25641ed33b1269af46a1ff2368a1545bf245a424/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2022-10-04T05:58:56/bikeshed/resize-observer-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'>2022-10-03</th><tr data-revised-hash='0d57a81f660ab2bac50448d3193a9fa9d62f3d77'><td><a href='/date/2022-10-03T10:40:30/resize-observer-1/'>10:40:30 PDT</a></td><td>2022-10-03 05:28:10 PDT</td><td><span title='Emilio Cobos Álvarez'>emilio</span></td><td>[resize-observer] Tweak naming to include "resize" on algorithm / etc names. As per suggestion in https://github.com/whatwg/html/pull/8348.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0d57a81f660ab2bac50448d3193a9fa9d62f3d77/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2022-10-03T10:40:30/bikeshed/resize-observer-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'>2022-08-03</th><tr data-revised-hash='c60a02d73cc65787ef381baedac4ad0f51495a45'><td><a href='/date/2022-08-03T11:31:33/resize-observer-1/'>11:31:33 PDT</a></td><td>2022-08-03 11:29:29 PDT</td><td><span title='Emilio Cobos Álvarez'>emilio</span></td><td>[resize-observer] Replace editors as per resolution in #7539</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c60a02d73cc65787ef381baedac4ad0f51495a45/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-03T11:31:33/bikeshed/resize-observer-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='dc78ece1f076868e0ef898e9edae22968f9c37e3'><td><a href='/date/2022-08-03T18:57:48/resize-observer-1/'>18:57:48 PDT</a></td><td>2022-08-03 18:57:23 PDT</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>Merge pull request #7537 from w1ndy/patch-1 [resize-observer-1] Include SVG elements that generate CSS layout boxes #4032</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dc78ece1f076868e0ef898e9edae22968f9c37e3/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-03T18:57:48/bikeshed/resize-observer-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'>2022-08-18</th><tr data-revised-hash='60f1933afc4c81316c6aea99dfea5424227b8160'><td><a href='/date/2022-08-18T17:00:42/resize-observer-1/'>17:00:42 PDT</a></td><td>2022-08-18 16:58:30 PDT</td><td><span title='Oriol Brufau'>oriol</span></td><td>[resize-observer-1] Properly link to "calculate box size"</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/60f1933afc4c81316c6aea99dfea5424227b8160/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2022-08-18T17:00:42/bikeshed/resize-observer-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='d3f51dc24194934a2f76c58f6819e28e4a73dc87'><td><a href='/date/2022-08-18T16:40:40/resize-observer-1/'>16:40:40 PDT</a></td><td>2022-08-18 16:35:14 PDT</td><td><span title='Oriol Brufau'>oriol</span></td><td>[resize-observer-1] Fix and improve "calculate box size" - Define computedSize - Ensure all paths return - Link more terms - Use switch and "otherwise". Fixes #7615. Fixes #7616.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d3f51dc24194934a2f76c58f6819e28e4a73dc87/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2022-08-18T16:40:40/bikeshed/resize-observer-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'>2022-08-15</th><tr data-revised-hash='8e7b8a879ac744b592d4632686b51da8544edd27'><td><a href='/date/2022-08-15T06:56:17/resize-observer-1/'>06:56:17 PDT</a></td><td>2022-08-15 06:47:31 PDT</td><td><span title='Oriol Brufau'>oriol</span></td><td>[resize-observer-1] Relevant step of HTML's event loop is now 7.16 Fixes #7546</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8e7b8a879ac744b592d4632686b51da8544edd27/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2022-08-15T06:56:17/bikeshed/resize-observer-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'>2022-08-04</th><tr data-revised-hash='bf59388020706b8d92970b9210a674021d717659'><td><a href='/date/2022-08-04T08:39:49/resize-observer-1/'>08:39:49 PDT</a></td><td>2022-08-04 08:13:40 PDT</td><td><span title='Oriol Brufau'>oriol</span></td><td>[resize-observer] ResizeObservation constructor needs a ResizeObserverBoxOptions Fixes #7547, #7548</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bf59388020706b8d92970b9210a674021d717659/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2022-08-04T08:39:49/bikeshed/resize-observer-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='76346f0772f4e8d3e3de5536716c0ff773cf6732'><td><a href='/date/2022-08-04T08:35:17/resize-observer-1/'>08:35:17 PDT</a></td><td>2022-08-04 08:20:50 PDT</td><td><span title='Oriol Brufau'>oriol</span></td><td>[resize-observer] Format/link some terms, finish sentences with dot</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/76346f0772f4e8d3e3de5536716c0ff773cf6732/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2022-08-04T08:35:17/bikeshed/resize-observer-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='e480267e1b1641a4bf746afd05c4101a7aeda2c1'><td><a href='/date/2022-08-04T08:28:41/resize-observer-1/'>08:28:41 PDT</a></td><td>2022-08-04 08:23:04 PDT</td><td><span title='Oriol Brufau'>oriol</span></td><td>[resize-observer] Avoid link error when referencing resize event</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e480267e1b1641a4bf746afd05c4101a7aeda2c1/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2022-08-04T08:28:41/bikeshed/resize-observer-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-07-24</th><tr data-revised-hash='c984e223550c3367a6c14f39b01f1cf494e48a63'><td><a href='/date/2019-07-24T10:04:35/resize-observer-1/'>10:04:35 PDT</a></td><td>2019-07-24 10:03:32 PDT</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] remove SVG specific text</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c984e223550c3367a6c14f39b01f1cf494e48a63/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-07-24T10:04:35/bikeshed/resize-observer-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-11</th><tr data-revised-hash='a6d7b699b84c0d9c62e0268d9155fdbd899febee'><td><a href='/date/2020-11-11T15:50:09/resize-observer-1/'>15:50:09 PST</a></td><td>2020-11-11 15:49:47 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[resize-observer-1] Improve example code (#4774) * Fix spelling * Reword comment * Replace var with let * Code formatting (semicolons, whitespace)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a6d7b699b84c0d9c62e0268d9155fdbd899febee/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-11-11T15:50:09/bikeshed/resize-observer-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-10-26</th><tr data-revised-hash='7d9b3dd2f51bd94d3ef5426cd9d7a3cf15d11d6c'><td><a href='/date/2020-10-26T13:15:02/resize-observer-1/'>13:15:02 PDT</a></td><td>2020-10-26 08:28:14 PDT</td><td><span title='Kagami Sascha Rosylight'>kagami_sascha_rosylight</span></td><td>[resize-observer-1] Remove ResizeObservation from IDL index</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7d9b3dd2f51bd94d3ef5426cd9d7a3cf15d11d6c/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-10-26T13:15:02/bikeshed/resize-observer-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='7cf9ccb88eab2159e1e0615f0767bc668726490d'><td><a href='/date/2020-08-18T14:13:10/resize-observer-1/'>14:13:10 PDT</a></td><td>2020-08-18 12:27:22 PDT</td><td><span>autokagami</span></td><td>[resize-observer-1] Align with Web IDL specification</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7cf9ccb88eab2159e1e0615f0767bc668726490d/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2020-08-18T14:13:10/bikeshed/resize-observer-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-05-14</th><tr data-revised-hash='6fc28c4328541e43c414780d4c4eda71e0897c25'><td><a href='/date/2020-05-14T16:27:47/resize-observer-1/'>16:27:47 PDT</a></td><td>2020-05-14 13:32:41 PDT</td><td><span title='Chris Harrelson'>chris_harrelson</span></td><td>[resize-observer-1] device-pixel-content-box should be in integral device pixels for SVG #5014 Change the box size calculation algorithm for svg elements when observed box is "device-pixel-content-box" to return the bounding box in integral device pixels.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6fc28c4328541e43c414780d4c4eda71e0897c25/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2020-05-14T16:27:47/bikeshed/resize-observer-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-03-27</th><tr data-revised-hash='64e4d49e42a5650d2a2b1a9169e4425b55086a09'><td><a href='/date/2020-03-27T13:54:46/resize-observer-1/'>13:54:46 PDT</a></td><td>2020-03-27 13:54:27 PDT</td><td><span title='Daniel Libby'>daniel_libby</span></td><td>[resize-observer-1] attributes cannot be sequence<T> #4683 (#4909) Fix invalid WebIDL by changing sequence to FrozenArray for lastReportedSizes in the ResizeObservation interface. Currently there are still normative references to this non-normative interface, discussed in #3839. These will be addressed in a follow-up.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/64e4d49e42a5650d2a2b1a9169e4425b55086a09/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2020-03-27T13:54:46/bikeshed/resize-observer-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-27</th><tr data-revised-hash='592189cfcc29887f608aac526e90fa29b2d1bc2d'><td><a href='/date/2020-02-27T18:41:57/resize-observer-1/'>18:41:57 PST</a></td><td>2020-02-27 09:52:30 PST</td><td><span title='Daniel Libby'>daniel_libby</span></td><td>Change from sequence to FrozenArray for ResizeObserverEntry attributes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/592189cfcc29887f608aac526e90fa29b2d1bc2d/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2020-02-27T18:41:57/bikeshed/resize-observer-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-20</th><tr data-revised-hash='a715eabb457d0ed84b114edf1a962ca191ce8b6b'><td><a href='/date/2020-02-20T14:09:40/resize-observer-1/'>14:09:40 PST</a></td><td>2020-02-20 14:09:20 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[resize-observer-1] Fix slot markup/autolinks.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a715eabb457d0ed84b114edf1a962ca191ce8b6b/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2020-02-20T14:09:40/bikeshed/resize-observer-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-08</th><tr data-revised-hash='5fd8a06d4c655fc8d7e560460be46c5e536d7d44'><td><a href='/date/2020-02-08T19:21:46/resize-observer-1/'>19:21:46 PST</a></td><td>2020-02-08 13:52:38 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[resize-observer-1] revert to ED after publication</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5fd8a06d4c655fc8d7e560460be46c5e536d7d44/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-02-08T19:21:46/bikeshed/resize-observer-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='197e75b9fb9df0981485a95484d02554d3255c2e'><td><a href='/date/2020-02-08T13:18:00/resize-observer-1/'>13:18:00 PST</a></td><td>2020-02-08 13:17:32 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[resize-observer-1] fix broken links</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/197e75b9fb9df0981485a95484d02554d3255c2e/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-02-08T13:18:00/bikeshed/resize-observer-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-18</th><tr data-revised-hash='1c015c62f41387148bedf0d5860cb9b15683b5f5'><td><a href='/date/2020-01-18T20:40:06/resize-observer-1/'>20:40:06 PST</a></td><td>2020-01-18 08:01:31 PST</td><td><span title='Philip J?genstedt'>philip_j_genstedt</span></td><td>[resize-observer] exclude ResizeObservation IDL from Reffy This IDL is non-normative and is excluded by class="exclude": https://github.com/tidoust/reffy/blob/d886aca8457f85bd7c89c9daf855d27def0d635d/src/cli/extract-webidl.js#L148</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1c015c62f41387148bedf0d5860cb9b15683b5f5/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-01-18T20:40:06/bikeshed/resize-observer-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-12-05</th><tr data-revised-hash='c088c91bf43dccb7ddd3b33257f0a21dd41dae86'><td><a href='/date/2019-12-05T19:16:47/resize-observer-1/'>19:16:47 PST</a></td><td>2019-12-05 19:16:31 PST</td><td><span title='Aleks Totic'>atotic</span></td><td>Merge pull request #3945 from w3c/atotic-patch-1 [resize-observer] More precise wording for "Calculate depth for node"</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c088c91bf43dccb7ddd3b33257f0a21dd41dae86/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-12-05T19:16:47/bikeshed/resize-observer-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-20</th><tr data-revised-hash='be9376f5c25c288232bbabda00147fcdf881b5ff'><td><a href='/date/2019-05-20T11:29:51/resize-observer-1/'>11:29:51 PDT</a></td><td>2019-05-20 11:29:39 PDT</td><td><span title='Aleks Totic'>atotic</span></td><td>More precise wording for "Calculate depth for node" As discussed in https://github.com/w3c/csswg-drafts/issues/3840</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/be9376f5c25c288232bbabda00147fcdf881b5ff/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-05-20T11:29:51/bikeshed/resize-observer-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='61fa9fcc50a86a98fb32dcbab9e141238e7c0fac'><td><a href='/date/2019-11-26T11:42:38/resize-observer-1/'>11:42:38 PST</a></td><td>2019-11-22 16:08:01 PST</td><td><span title='Daniel Libby'>daniel_libby</span></td><td>Remove JavaScript constructor for ResizeObserverEntry</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/61fa9fcc50a86a98fb32dcbab9e141238e7c0fac/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-26T11:42:38/bikeshed/resize-observer-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-22</th><tr data-revised-hash='0b46c85bb725f35f854b7c93a21d65e22aa39056'><td><a href='/date/2019-11-22T10:54:25/resize-observer-1/'>10:54:25 PST</a></td><td>2019-11-21 22:35:12 PST</td><td><span title='Daniel Libby'>daniel_libby</span></td><td>Add syntax that is compatible with fragments'</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0b46c85bb725f35f854b7c93a21d65e22aa39056/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-22T10:54:25/bikeshed/resize-observer-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-08</th><tr data-revised-hash='61d910f9bafdd87c4568b10f02e435f6b3f4ff8d'><td><a href='/date/2019-11-08T14:21:32/resize-observer-1/'>14:21:32 PST</a></td><td>2019-11-08 14:21:14 PST</td><td><span title='Daniel Libby'>daniel_libby</span></td><td>Add support for device-pixel-content-box-size #3554 (#4476) Authors need a way to get the content box size in integral physical pixels. This allows for the correct sizing of the backing store of a canvas to match the snapped CSS size and prevents moire patterns that arise when the sizes are mismatched. Currently authors could use devicePixelRatio and rounding in order to approximate this, but due to implementation differences in pixel snapping, can still get the wrong answer. Additionally, this can be affected by position changes which authors cannot currently hook into in a reasonable manner.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/61d910f9bafdd87c4568b10f02e435f6b3f4ff8d/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2019-11-08T14:21:32/bikeshed/resize-observer-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/resize-observer-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/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-06-07T11:10:18/bikeshed/resize-observer-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-17</th><tr data-revised-hash='f3ca91701d3923512b0de6d087cff0e5e56adb76'><td><a href='/date/2019-05-17T22:46:39/resize-observer-1/'>22:46:39 PDT</a></td><td>2019-05-17 22:46:22 PDT</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Removed line in spec which states you can disconnect() an in use resizeObserver - fixes #3662</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f3ca91701d3923512b0de6d087cff0e5e56adb76/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-05-17T22:46:39/bikeshed/resize-observer-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='82847d2e2162ab40d63b9ad22e867fbf878479ea'><td><a href='/date/2019-05-17T22:43:03/resize-observer-1/'>22:43:03 PDT</a></td><td>2019-05-17 22:42:43 PDT</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Fixed confusion around Element 'being rendered' - fixes #3819</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/82847d2e2162ab40d63b9ad22e867fbf878479ea/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-05-17T22:43:03/bikeshed/resize-observer-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='a9226bb672f5735674b764e0844e0b913e39f79c'><td><a href='/date/2019-05-17T22:16:07/resize-observer-1/'>22:16:07 PDT</a></td><td>2019-05-02 15:03:04 PDT</td><td><span title='Daniel Holbert'>dholbert</span></td><td>Fix some observedBox terminology issues This replaces 'specificBox' with 'observedBox' in several places, and fixes one mention of "bounding-box" which really meant to say "border-box".</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a9226bb672f5735674b764e0844e0b913e39f79c/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-05-17T22:16:07/bikeshed/resize-observer-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-28</th><tr data-revised-hash='af19bb4e268d27f93033cb9ff7d802f709581d19'><td><a href='/date/2019-02-28T09:52:52/resize-observer-1/'>09:52:52 PST</a></td><td>2019-02-28 09:52:29 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Removed the inline issues that were resolved. Added a note about potential deprecation in the future of contentRect</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/af19bb4e268d27f93033cb9ff7d802f709581d19/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-02-28T09:52:52/bikeshed/resize-observer-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='1bde39501ecc4c4547119e5e8572f417a0f496a8'><td><a href='/date/2019-02-28T09:46:17/resize-observer-1/'>09:46:17 PST</a></td><td>2019-02-28 09:32:19 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Renamed contentSize to contentBoxSize</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1bde39501ecc4c4547119e5e8572f417a0f496a8/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-02-28T09:46:17/bikeshed/resize-observer-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-01-23</th><tr data-revised-hash='1da62a1b5a0b635cf7b3edc02921e7dfb0b98bca'><td><a href='/date/2019-01-23T09:40:00/resize-observer-1/'>09:40:00 PST</a></td><td>2019-01-23 09:37:08 PST</td><td><span>fantasai</span></td><td>[resize-observer-1] Don't put index.html in the URL</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/1da62a1b5a0b635cf7b3edc02921e7dfb0b98bca/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-01-23T09:40:00/bikeshed/resize-observer-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-01-08</th><tr data-revised-hash='3c1b5d02ebd621734d618525fd4bc6992b73791b'><td><a href='/date/2019-01-08T14:36:06/resize-observer-1/'>14:36:06 PST</a></td><td>2019-01-08 14:35:45 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Fixing bikeshed issue with missing bracket</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3c1b5d02ebd621734d618525fd4bc6992b73791b/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-01-08T14:36:06/bikeshed/resize-observer-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='c717f5d7baccb2029de845e8e4de9e9b7907351c'><td><a href='/date/2019-01-08T14:27:46/resize-observer-1/'>14:27:46 PST</a></td><td>2019-01-08 14:26:54 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Moved the ResizeObservation interface to the processing model section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c717f5d7baccb2029de845e8e4de9e9b7907351c/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-01-08T14:27:46/bikeshed/resize-observer-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-10</th><tr data-revised-hash='ee76368a08e6f7777ebba9bbe7ca32fdad91dc02'><td><a href='/date/2018-12-10T09:57:05/resize-observer-1/'>09:57:05 PST</a></td><td>2018-12-07 17:07:14 PST</td><td><span title='Aleks Totic'>atotic</span></td><td>Merge branch 'master' of github.com:atotic/csswg-drafts</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ee76368a08e6f7777ebba9bbe7ca32fdad91dc02/resize-observer-1/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-12-10T09:57:05/bikeshed/resize-observer-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='c257deb306817282117c02eda800f41b705fea7b'><td><a href='/date/2018-11-15T21:15:26/resize-observer-1/'>21:15:26 PST</a></td><td>2018-11-15 21:14:52 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[Resize-Observer] Updated spec text to reflect IDL changes and added example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c257deb306817282117c02eda800f41b705fea7b/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-11-15T21:15:26/bikeshed/resize-observer-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='bb451f4a2f16d568b06940b4f71af2dd513c2143'><td><a href='/date/2018-11-15T20:37:52/resize-observer-1/'>20:37:52 PST</a></td><td>2018-11-15 20:37:03 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>Added text to start passing new IDL info across the API</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bb451f4a2f16d568b06940b4f71af2dd513c2143/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-11-15T20:37:52/bikeshed/resize-observer-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-14</th><tr data-revised-hash='e66111404b317028a7bbb3de3210eff29e5b2500'><td><a href='/date/2018-11-14T23:34:45/resize-observer-1/'>23:34:45 PST</a></td><td>2018-11-14 23:34:00 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[Resize-Observer] Added definition links for boxes, removed snap box for now to understand use cases further before adding it in.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e66111404b317028a7bbb3de3210eff29e5b2500/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-11-14T23:34:45/bikeshed/resize-observer-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='d7fabb0897fd7e1fb30a53921fe185745a27c733'><td><a href='/date/2018-11-14T23:00:46/resize-observer-1/'>23:00:46 PST</a></td><td>2018-11-14 22:53:24 PST</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Added updated IDL</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d7fabb0897fd7e1fb30a53921fe185745a27c733/resize-observer-1/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-11-14T23:00:46/bikeshed/resize-observer-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-10-23</th><tr data-revised-hash='55cee4945df42515ae8b0cb5978507249917f306'><td><a href='/date/2018-10-23T03:00:00/resize-observer-1/'>03:00:00 PDT</a></td><td>2018-10-23 02:59:38 PDT</td><td><span title='Greg Whitworth'>gregwhitworth</span></td><td>[resize-observer] Added layoutBox to resizeObserver method</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/55cee4945df42515ae8b0cb5978507249917f306/resize-observer-1/Overview.bs'></a><a class='bikeshed fatal' href='/date/2018-10-23T03:00:00/bikeshed/resize-observer-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-10-22</th><tr data-revised-hash='cd179bb723071ff93ed3e7a2a16d2ae2415c913c'><td><a href='/date/2018-10-22T07:27:49/resize-observer-1/'>07:27:49 PDT</a></td><td>2018-10-22 07:26:52 PDT</td><td><span title='Peter Linss'>plinss</span></td><td>[resize-observer-1] update ED URL</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cd179bb723071ff93ed3e7a2a16d2ae2415c913c/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-10-22T07:27:49/bikeshed/resize-observer-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='921db23494d63b91e07e7f8c4ab3051f9d49c630'><td><a href='/date/2018-10-22T07:22:34/resize-observer-1/'>07:22:34 PDT</a></td><td>2018-10-22 07:18:21 PDT</td><td><span title='Peter Linss'>plinss</span></td><td>[resize-observer-1] rename resize-observer/index.bs to resize-observer-1/Overview.bs</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/921db23494d63b91e07e7f8c4ab3051f9d49c630/resize-observer-1/Overview.bs'></a><a class='bikeshed success' href='/date/2018-10-22T07:22:34/bikeshed/resize-observer-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/resize-observer-1/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/resize-observer-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/resize-observer-1/' method='get'><input disabled type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/1/resize-observer-1/' method='get'><input disabled type='submit' value='Last'></form></div></div></body></html>