CINXE.COM

FX Task Force 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>FX Task Force Editor Drafts</title><link href='/local/img/fxtficon.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'><link href='/stylesheets/homepage.css' rel='stylesheet' type='text/css'><script nonce='gQCeSjsyS20eDD/suf1fEyQwCtcGMtqC0p8+r1Axp1s=' type='text/javascript'><!-- var gCookieDomain=".drafts.fxtf.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='gQCeSjsyS20eDD/suf1fEyQwCtcGMtqC0p8+r1Axp1s=' 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='gQCeSjsyS20eDD/suf1fEyQwCtcGMtqC0p8+r1Axp1s=' type='text/javascript'><!-- // --></script><script nonce='gQCeSjsyS20eDD/suf1fEyQwCtcGMtqC0p8+r1Axp1s=' type='text/javascript'><!-- var gDraftAPIURI="https:\/\/drafts.fxtf.org\/api\/drafts\/";var gRepo="fxtf";var gDate=false;var gBranch=null;var gHead=null;var gUpdateStream=null;function updateTBody(tbody,data){return system.iterateElementChildren(tbody,function(tr,rowIndex){if(tr.getAttribute('data-path')==data.source_path){var dateTD=tr.firstElementChild.nextElementSibling;dateTD.textContent=data.revised_changeset.date_user+' '+data.revised_changeset.time_user;var userTD=dateTD.nextElementSibling;system.emptyElement(userTD);system.addUserHyperLink(userTD,data.revised_changeset.user);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){var specTable=document.getElementById('spec_table');var docTable=document.getElementById('doc_table');if(!(updateTable(specTable,data)||updateTable(docTable,data))){if(data.source_path.split('/').length<=2){window.location.reload();}}}function startStream(){gUpdateStream=new Stream(gDraftAPIURI,{'repo':gRepo,'date':gDate,'branch':gBranch,'head':gHead},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/'>Login</a></div></div><p class='nav'><a>Home</a></p><h1 id='title'>FX Task Force Editor Drafts</h1></div><div class='body'><table class='list tbody' id='spec_table'><thead><tr><th>Specification</th><th>Last Update</th><th>By</th><th></th></tr></thead><tbody><tr><th colspan='4'>compositing</th></tr><tr class='' data-path='compositing-1/Overview.html'><td><a href='/compositing-1/'>Compositing 1</a></td><td>2024-08-30 10:43:41 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/compositing-1/issues-lc-2014'><img alt src='/img/issues.svg'></a><a class='history' href='/history/compositing-1/'><img alt src='/img/history.svg'></a><a class='bikeshed committed' href='/bikeshed/compositing-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 class='current' data-path='compositing-2/Overview.html'><td><a href='/compositing-2/'>Compositing 2</a><span>(Current Work)</span></td><td>2022-01-06 07:59:35 PST</td><td><span title='Jake Archibald'>jake_archibald</span></td><td><a class='history' href='/history/compositing-2/'><img alt src='/img/history.svg'></a><a class='bikeshed committed' href='/bikeshed/compositing-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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><tr class='' data-path='css-masking-1/Overview.html'><td><a href='/css-masking-1/'>CSS Masking 1</a></td><td>2024-03-16 14:24:40 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-masking-1/issues-lc-2014'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-masking-1/'><img alt src='/img/history.svg'></a><a class='bikeshed committed' href='/bikeshed/css-masking-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><tr class='' data-path='custom/Overview.html'><td><a href='/custom/'>CSS Shaders 1</a></td><td>2015-07-22 10:02:36 PDT</td><td><span title='Peter Linss'>plinss</span></td><td><a class='history' href='/history/custom/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/custom/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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><tr class='' data-path='fill-stroke/Overview.bs'><td><a href='/fill-stroke/'>Fill &amp; Stroke</a></td><td>2024-03-11 22:45:34 PDT</td><td><span>Guillaume</span></td><td><a class='history' href='/history/fill-stroke/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/fill-stroke/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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><tr><th colspan='4'>filter-effects</th></tr><tr class='current' data-path='filter-effects/Overview.bs'><td><a href='/filter-effects/'>Filter Effects 1</a><span>(Current Work)</span></td><td>2024-08-01 11:00:38 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/filter-effects/issues-lc-2015'><img alt src='/img/issues.svg'></a><a class='history' href='/history/filter-effects/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/filter-effects/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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 class='' data-path='filter-effects-2/Overview.bs'><td><a href='/filter-effects-2/'>Filter Effects 2</a></td><td>2024-08-01 09:37:22 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/filter-effects-2/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/filter-effects-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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><tr class='' data-path='geometry/Overview.bs'><td><a href='/geometry/'>Geometry Interfaces 1</a></td><td>2024-08-30 10:43:41 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/geometry/issues-lc-2014'><img alt src='/img/issues.svg'></a><a class='history' href='/history/geometry/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/geometry/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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><tr class='' data-path='matrix/Overview.bs'><td><a href='/matrix/'>DOMMatrix</a></td><td>2018-07-02 17:09:01 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td><a class='history' href='/history/matrix/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/matrix/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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><tr class='' data-path='motion-1/Overview.bs'><td><a href='/motion-1/'>Motion Path 1</a></td><td>2024-10-30 22:30:13 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/motion-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/motion-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><table class='list' id='doc_table'><thead><tr><th>Other Documents</th><th>Last Update</th><th>By</th><th></th></tr></thead><tbody><tr data-path='CODE_OF_CONDUCT.md'><td><a href='/CODE_OF_CONDUCT'>CODE_OF_CONDUCT</a></td><td>2018-05-23 13:18:12 PDT</td><td><span title='Philippe Le Hegaret'>plh</span></td><td><a class='history' href='/history/CODE_OF_CONDUCT'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/CODE_OF_CONDUCT'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='CONTRIBUTING.md'><td><a href='/CONTRIBUTING'>CONTRIBUTING</a></td><td>2018-06-11 07:23:47 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td><a class='history' href='/history/CONTRIBUTING'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/CONTRIBUTING'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='LICENSE.md'><td><a href='/LICENSE'>LICENSE</a></td><td>2017-06-08 08:38:29 PDT</td><td><span title='Philippe Le Hegaret'>plh</span></td><td><a class='history' href='/history/LICENSE'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/LICENSE'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='README.markdown'><td><a href='/README'>README</a></td><td>2018-11-10 06:44:13 PST</td><td><span title='Peter Linss'>plinss</span></td><td><a class='history' href='/history/README'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/README'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='web-anim/index.html'><td><a href='/web-anim/index.html'>web-anim/index.html</a></td><td>2014-09-16 03:26:38 PDT</td><td><span title='Brian Birtles'>brian_birtles</span></td><td><a class='history' href='/history/web-anim/index.html'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/web-anim/index.html'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'><address>Please send comments, questions, and error reports to <a href='http://lists.w3.org/Archives/Public/public-fx'>public-fx@w3.org</a></address></div></body></html>

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