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='KylYVL5R0jUZBWkM2RPi/sytdW9RErfo/uIk/BsOUbE=' 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='KylYVL5R0jUZBWkM2RPi/sytdW9RErfo/uIk/BsOUbE=' 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='KylYVL5R0jUZBWkM2RPi/sytdW9RErfo/uIk/BsOUbE=' type='text/javascript'><!-- // --></script><script nonce='KylYVL5R0jUZBWkM2RPi/sytdW9RErfo/uIk/BsOUbE=' 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="mediaqueries-5\/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/mediaqueries-5/'>Login</a></div></div><p class='nav'><a href='/'>Home</a><a href='/mediaqueries-5/'>Home</a><a>History</a></p><div class='mini_nav'><span class='icon button first disabled'></span><span class='icon button prev disabled'></span><span>Page 1 of 2</span><a class='icon button next' href='/history/page/2/mediaqueries-5/'></a><a class='icon button last' href='/history/page/2/mediaqueries-5/'></a></div><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><h3>History for mediaqueries-5/Overview.html:</h3><table class='list tbody' id='history_table'><thead><tr><th>Uploaded</th><th>Revised</th><th>By</th><th>Comment</th><th></th></tr></thead><tbody><th colspan='5'>2024-11-15</th><tr data-revised-hash='c6a8a4dc8bc004f2a3698164b9d6f0d5bf80132b'><td><a href='/date/2024-11-15T13:05:15/mediaqueries-5/'>13:05:15 PST</a></td><td>2024-11-15 13:04:43 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[mediaqueries-5][editorial] Separate Security and Privacy sections</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c6a8a4dc8bc004f2a3698164b9d6f0d5bf80132b/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-11-15T13:05:15/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-09-19</th><tr data-revised-hash='9b29dd431fbfbf11d91a8f2292576adc4760cb6b'><td><a href='/date/2024-09-19T09:22:53/mediaqueries-5/'>09:22:53 PDT</a></td><td>2024-09-19 09:21:54 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[mediaqueries-5][editorial] Clarify changes between MQ4 and FPWD, fix #10864</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9b29dd431fbfbf11d91a8f2292576adc4760cb6b/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-19T09:22:53/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-09-17</th><tr data-revised-hash='8192b82ef06e6fb6b8fa310a02226f5b7e344341'><td><a href='/date/2024-09-17T06:55:30/mediaqueries-5/'>06:55:30 PDT</a></td><td>2024-07-19 08:10:50 PDT</td><td><span title='Luke Warlow'>luke_warlow</span></td><td>[mediaqueries-5] Migrate Web Preferences API proposal</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8192b82ef06e6fb6b8fa310a02226f5b7e344341/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-09-17T06:55:30/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-07-19</th><tr data-revised-hash='bda3dbe52db8a67bbfe7b38b18ce3b347793655b'><td><a href='/date/2024-07-19T10:30:49/mediaqueries-5/'>10:30:49 PDT</a></td><td>2024-07-19 10:30:27 PDT</td><td><span title='Luke Warlow'>luke_warlow</span></td><td>Add myself (Luke Warlow) as co-editor of mediaqueries level 5. (#10596)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bda3dbe52db8a67bbfe7b38b18ce3b347793655b/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-07-19T10:30:49/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-04-11</th><tr data-revised-hash='fb2b1fcd138dc2f0e9fed1dad3f7d0fdf6cb4bb8'><td><a href='/date/2024-04-11T17:12:23/mediaqueries-5/'>17:12:23 PDT</a></td><td>2022-05-24 21:45:03 PDT</td><td><span title='Matt Giuca'>matt_giuca</span></td><td>[mediaqueries-5] Move the definition of display-mode back to APPMANIFEST Closes #7306 Closes #7307</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fb2b1fcd138dc2f0e9fed1dad3f7d0fdf6cb4bb8/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-04-11T17:12:23/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-03-13</th><tr data-revised-hash='fa2875acd8c02ff9326ea5a47cc044cea3bb285b'><td><a href='/date/2024-03-13T20:23:31/mediaqueries-5/'>20:23:31 PDT</a></td><td>2024-03-13 20:22:51 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] grammar fix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fa2875acd8c02ff9326ea5a47cc044cea3bb285b/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-13T20:23:31/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='7a12bfeb44541d39afb9752c1dc5f1f2953c537f'><td><a href='/date/2024-03-13T20:21:20/mediaqueries-5/'>20:21:20 PDT</a></td><td>2024-03-13 20:20:25 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Fix markup error</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7a12bfeb44541d39afb9752c1dc5f1f2953c537f/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-13T20:21:20/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='6ce4423502b3c34ca04a074baeac43eb855f0859'><td><a href='/date/2024-03-13T20:19:33/mediaqueries-5/'>20:19:33 PDT</a></td><td>2024-03-13 20:17:00 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Restore text on concerns on prefers-reduced-data and privacy</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6ce4423502b3c34ca04a074baeac43eb855f0859/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-03-13T20:19:33/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-02-08</th><tr data-revised-hash='341c5030612c2f03ab5f0d8510222ab4a27bb561'><td><a href='/date/2024-02-08T10:21:56/mediaqueries-5/'>10:21:56 PST</a></td><td>2024-02-08 10:21:36 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>Add picture-in-picture display mode (#9920)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/341c5030612c2f03ab5f0d8510222ab4a27bb561/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-02-08T10:21:56/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2023-12-11</th><tr data-revised-hash='684045a38e55bb0133a45a7925fd9e46096f0790'><td><a href='/date/2023-12-11T13:53:11/mediaqueries-5/'>13:53:11 PST</a></td><td>2023-07-22 06:01:33 PDT</td><td><span title='Luke Warlow'>luke_warlow</span></td><td>[mediaqueries-5] Add prefers-reduced-transparency to issue about fingerprinting</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/684045a38e55bb0133a45a7925fd9e46096f0790/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='684045a38e55bb0133a45a7925fd9e46096f0790'><td><a href='/date/2023-12-11T13:53:11/mediaqueries-5/'>13:53:11 PST</a></td><td>2023-07-22 06:01:33 PDT</td><td><span title='Luke Warlow'>luke_warlow</span></td><td>[mediaqueries-5] Add prefers-reduced-transparency to issue about fingerprinting</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/684045a38e55bb0133a45a7925fd9e46096f0790/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='684045a38e55bb0133a45a7925fd9e46096f0790'><td><a href='/date/2023-12-11T13:53:11/mediaqueries-5/'>13:53:11 PST</a></td><td>2023-07-22 06:01:33 PDT</td><td><span title='Luke Warlow'>luke_warlow</span></td><td>[mediaqueries-5] Add prefers-reduced-transparency to issue about fingerprinting</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/684045a38e55bb0133a45a7925fd9e46096f0790/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2023-12-11T13:53:11/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-01-24</th><tr data-revised-hash='57e47329607f43274c48220c2efcaa110c30ba9d'><td><a href='/date/2024-01-24T06:56:24/mediaqueries-5/'>06:56:24 PST</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[editorial] Add separate Security and Privacy appendices to .bs specs that didn't have them, #207</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/57e47329607f43274c48220c2efcaa110c30ba9d/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-01-24T06:56:24/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-01-19</th><tr data-revised-hash='cd07785f381d8eee5b7f2bf2ebded3f97c5a12f5'><td><a href='/date/2024-01-19T11:17:05/mediaqueries-5/'>11:17:05 PST</a></td><td>2024-01-19 11:16:44 PST</td><td><span>CanadaHonk</span></td><td>[mediaqueries-5] Remove inverted-colors UA rule (#9812) Change it to an author suggestion. Closes #9674.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/cd07785f381d8eee5b7f2bf2ebded3f97c5a12f5/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-01-19T11:17:05/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2024-01-17</th><tr data-revised-hash='b1385385eaab04370f17ba72482bbc428a33a73e'><td><a href='/date/2024-01-17T11:24:36/mediaqueries-5/'>11:24:36 PST</a></td><td>2024-01-17 11:24:16 PST</td><td><span title='Adam Argyle'>adam_argyle</span></td><td>[css-media-5] fixes #9475 - prefers reduced data tag question</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b1385385eaab04370f17ba72482bbc428a33a73e/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2024-01-17T11:24:36/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-24</th><tr data-revised-hash='d16f8b27754032204de89eaffb29b82e1b99c757'><td><a href='/date/2022-08-24T14:31:05/mediaqueries-5/'>14:31:05 PDT</a></td><td>2022-08-24 14:30:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[mediaqueries-5] Per WG resolution, embedded SVGs use the used color scheme of the embedding node for prefers-color-scheme. #7213</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d16f8b27754032204de89eaffb29b82e1b99c757/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-24T14:31:05/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-09</th><tr data-revised-hash='65bd952b9ca5d23db23a6cad4afa1c18b9ebfac0'><td><a href='/date/2022-08-09T11:40:09/mediaqueries-5/'>11:40:09 PDT</a></td><td>2022-08-09 11:39:43 PDT</td><td><span title='Sam Sneddon'>gsnedders</span></td><td>[Editorial] Clarify what "disallowed" values are (#7585) This text is based on that in Cascade 4.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/65bd952b9ca5d23db23a6cad4afa1c18b9ebfac0/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-08-09T11:40:09/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-14</th><tr data-revised-hash='8425638c6fed4c635eca2857a956445e14a17583'><td><a href='/date/2022-07-14T12:28:28/mediaqueries-5/'>12:28:28 PDT</a></td><td>2022-07-14 12:28:02 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Fix grouping in <general-enclosed> and apply earlier fixes to mediaqueries-5. (#7497)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8425638c6fed4c635eca2857a956445e14a17583/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-07-14T12:28:28/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2022-05-04</th><tr data-revised-hash='61dddac24dd70734e0c578d65030cd826b7944c2'><td><a href='/date/2022-05-04T20:24:47/mediaqueries-5/'>20:24:47 PDT</a></td><td>2022-05-04 20:23:10 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries] disallow 'layer' as a media type Closes #7225</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/61dddac24dd70734e0c578d65030cd826b7944c2/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-05-04T20:24:47/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-02-10</th><tr data-revised-hash='01d2a6a209912d6b68dfcc967baae76515067746'><td><a href='/date/2022-02-10T10:36:11/mediaqueries-5/'>10:36:11 PST</a></td><td>2022-02-10 10:24:19 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[css-color-4][mediaqueries] Use (new) normative reference for Display P3, #7036</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/01d2a6a209912d6b68dfcc967baae76515067746/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2022-02-10T10:36:11/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-22</th><tr data-revised-hash='951765a4428f2212a9ee030e864922c96d958f29'><td><a href='/date/2021-12-22T01:53:20/mediaqueries-5/'>01:53:20 PST</a></td><td>2021-12-22 01:51:23 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Clarify intent of prefers-reduced-motion See #5594</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/951765a4428f2212a9ee030e864922c96d958f29/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-22T01:53:20/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='de4268bcdc55966d0a28b591a2e4c4e37c4160b9'><td><a href='/date/2021-12-22T00:27:27/mediaqueries-5/'>00:27:27 PST</a></td><td>2021-12-17 19:42:39 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Post publication link update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/de4268bcdc55966d0a28b591a2e4c4e37c4160b9/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-22T00:27:27/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-17</th><tr data-revised-hash='18e4a91310783afe9f1f22fdc51019d58a23dc97'><td><a href='/date/2021-12-17T19:27:37/mediaqueries-5/'>19:27:37 PST</a></td><td>2021-12-17 19:22:32 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Phrasing tweaks</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/18e4a91310783afe9f1f22fdc51019d58a23dc97/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-17T19:27:37/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='eb28f047f0fdf5b2e400588d1ca28e8151e68d96'><td><a href='/date/2021-12-17T19:17:25/mediaqueries-5/'>19:17:25 PST</a></td><td>2021-12-17 19:16:03 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Add example This helps lift the confusion that prompted #5458</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/eb28f047f0fdf5b2e400588d1ca28e8151e68d96/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-17T19:17:25/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-16</th><tr data-revised-hash='11a77b58d518e36af0c1204d41a756ebe28b133e'><td><a href='/date/2021-12-16T19:36:42/mediaqueries-5/'>19:36:42 PST</a></td><td>2021-12-16 19:35:06 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Change dynamic-range to nested sets rather than alternatives Closes #6793</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/11a77b58d518e36af0c1204d41a756ebe28b133e/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-16T19:36:42/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='167176de309c10cdb15d6a46a79844f40dcf462d'><td><a href='/date/2021-12-16T19:15:03/mediaqueries-5/'>19:15:03 PST</a></td><td>2021-12-16 19:03:30 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Drop video-width, video-hight, and video-resolution Closes #5044</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/167176de309c10cdb15d6a46a79844f40dcf462d/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-16T19:15:03/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-02</th><tr data-revised-hash='e6b50ce8f790925474ae7b1fbcde8701939a0751'><td><a href='/date/2021-12-02T18:41:39/mediaqueries-5/'>18:41:39 PST</a></td><td>2021-12-02 18:40:45 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] punctuation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e6b50ce8f790925474ae7b1fbcde8701939a0751/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-02T18:41:39/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='bf8310e0fb1f62b8189a642e3ed27a9695464746'><td><a href='/date/2021-12-02T18:17:11/mediaqueries-5/'>18:17:11 PST</a></td><td>2021-12-02 18:16:29 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Mark non-normative sections as such</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/bf8310e0fb1f62b8189a642e3ed27a9695464746/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-02T18:17:11/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='ebb9b8a85919666f19b5b6f5dd90d74aecc2488b'><td><a href='/date/2021-12-02T18:09:17/mediaqueries-5/'>18:09:17 PST</a></td><td>2021-12-02 18:08:26 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Export the dfn for display mode Part of #6343</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/ebb9b8a85919666f19b5b6f5dd90d74aecc2488b/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-02T18:09:17/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='860243ce5ece91f58be9f33520826e3f765ce204'><td><a href='/date/2021-12-02T18:06:35/mediaqueries-5/'>18:06:35 PST</a></td><td>2021-12-02 18:04:06 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Security considerations for display-mode See #6343</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/860243ce5ece91f58be9f33520826e3f765ce204/mediaqueries-5/Overview.bs'></a><a class='bikeshed success' href='/date/2021-12-02T18:06:35/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-12-01</th><tr data-revised-hash='71c40279946c57f26e887ebe5acfabf2c3063d52'><td><a href='/date/2021-12-01T21:27:01/mediaqueries-5/'>21:27:01 PST</a></td><td>2021-12-01 21:25:24 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Import display-modes (#6343)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/71c40279946c57f26e887ebe5acfabf2c3063d52/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-12-01T21:27:01/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-11-03</th><tr data-revised-hash='d2f7fbcd89bdbd02154274bb4938d62bd96035cc'><td><a href='/date/2021-11-03T15:44:59/mediaqueries-5/'>15:44:59 PDT</a></td><td>2021-11-03 15:43:22 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaquries-5] Remove warnings against shipping See #4834</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d2f7fbcd89bdbd02154274bb4938d62bd96035cc/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-11-03T15:44:59/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-10-27</th><tr data-revised-hash='c2a5256ce9c21b0f2d8ce4c8034d405cb5836d92'><td><a href='/date/2021-10-27T02:13:40/mediaqueries-5/'>02:13:40 PDT</a></td><td>2021-10-27 02:12:52 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Add credits for nav-controls See #4187</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c2a5256ce9c21b0f2d8ce4c8034d405cb5836d92/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-10-27T02:13:40/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='fbdbcc259e487d9687f48a79aec1019116109ab3'><td><a href='/date/2021-10-27T02:11:35/mediaqueries-5/'>02:11:35 PDT</a></td><td>2021-10-27 02:10:37 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Add nav-controls See #4187</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbdbcc259e487d9687f48a79aec1019116109ab3/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-10-27T02:11:35/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-10-26</th><tr data-revised-hash='7067a10e188bf238e705c78e2716f43712faee8c'><td><a href='/date/2021-10-26T20:39:56/mediaqueries-5/'>20:39:56 PDT</a></td><td>2021-10-26 20:39:11 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-mediaqueries-5] Markup disambiguation</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7067a10e188bf238e705c78e2716f43712faee8c/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-10-26T20:39:56/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-13</th><tr data-revised-hash='098278eb1994df2d7b9e9786163f7671bce70dad'><td><a href='/date/2021-07-13T23:41:34/mediaqueries-5/'>23:41:34 PDT</a></td><td>2021-07-13 23:41:03 PDT</td><td><span title='Daniel Libby'>daniel_libby</span></td><td>Add viewport segment media queries (#6234)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/098278eb1994df2d7b9e9786163f7671bce70dad/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-07-13T23:41:34/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-03</th><tr data-revised-hash='301e7f12aba90d5c76afa5f7432bb60b27e97377'><td><a href='/date/2021-06-03T09:41:31/mediaqueries-5/'>09:41:31 PDT</a></td><td>2021-06-03 09:38:57 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Add custom value do the descdef</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/301e7f12aba90d5c76afa5f7432bb60b27e97377/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-06-03T09:41:31/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-02</th><tr data-revised-hash='7fed0d1a424113d44d81e027833192371ff28fbd'><td><a href='/date/2021-06-02T19:42:22/mediaqueries-5/'>19:42:22 PDT</a></td><td>2021-06-02 19:40:12 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] prefers-contrast: custom See #6036</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7fed0d1a424113d44d81e027833192371ff28fbd/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-06-02T19:42:22/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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/mediaqueries-5/'>14:26:46 PDT</a></td><td>2021-05-17 14:24:15 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Revert "Revert "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main"" This reverts commit 9d14c2393cfeca05c799d43444fe9c860074e80b. The commit that it was reverting was actually fine; it was a merge, but looked like it was bad because it had a large diff against the first parent but it had no diff against the second (which was the relevant one in a "linear history" of this repository).</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dfe5f345ac420eb0f68ef11b2dd22835d623a876/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T14:26:46/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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/mediaqueries-5/'>13:52:15 PDT</a></td><td>2021-05-17 12:25:01 PDT</td><td><span title='Adam Argyle'>adam_argyle</span></td><td>Revert "Merge branch 'main' of https://github.com/w3c/csswg-drafts into main" This reverts commit 442ca50fbfe14f5e163336a54844ba447d2bafa7, reversing changes made to d0337ce2a834e083954a3b090fd69ea918a0302a.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/70d026dcb8e01b8e3b0898968180c45a2d0da901/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-05-17T13:52:15/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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/mediaqueries-5/'>22:08:13 PDT</a></td><td>2021-04-08 22:06:02 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Use consistant capitalization for "user agent" Also checks in a little script that helps in doing this semi-automatically.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0b6d15a45fddffa52282a39fcd4edb314ecb103b/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-04-08T22:08:13/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-20</th><tr data-revised-hash='3ce924831fda6549d3efe1c7e4c3118f5eea90ed'><td><a href='/date/2021-03-20T23:19:50/mediaqueries-5/'>23:19:50 PDT</a></td><td>2021-03-20 23:18:48 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Phrasing tweak See https://github.com/w3c/csswg-drafts/commit/a2f6a35c4abf8f1accc9459c14b55d4cd25748b0#r48157340</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3ce924831fda6549d3efe1c7e4c3118f5eea90ed/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-20T23:19:50/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-03-18</th><tr data-revised-hash='eb270c64b835d6b217b33b8a7f741129112c12cf'><td><a href='/date/2021-03-18T01:20:15/mediaqueries-5/'>01:20:15 PDT</a></td><td>2021-03-18 01:18:06 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Fix typos See https://github.com/w3c/csswg-drafts/commit/d7b7f4b9a6445ef9390fd3f68ed7cf57efe4dd54#r48157412 and https://github.com/w3c/csswg-drafts/commit/d7b7f4b9a6445ef9390fd3f68ed7cf57efe4dd54#r48157409</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/eb270c64b835d6b217b33b8a7f741129112c12cf/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-03-18T01:20:15/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-02-25</th><tr data-revised-hash='a3893d7a3522592730da398edcd59f41845a90e6'><td><a href='/date/2021-02-25T18:28:07/mediaqueries-5/'>18:28:07 PST</a></td><td>2021-02-25 18:27:25 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Fix typos See #5433</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a3893d7a3522592730da398edcd59f41845a90e6/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-25T18:28:07/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='5188601364e145e4a187b6b2243992e1e44fef38'><td><a href='/date/2021-02-25T18:25:06/mediaqueries-5/'>18:25:06 PST</a></td><td>2021-02-25 18:23:49 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Remove prefers-contrast:forced See #5433</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5188601364e145e4a187b6b2243992e1e44fef38/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-25T18:25:06/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-02-21</th><tr data-revised-hash='d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38'><td><a href='/date/2021-02-21T23:27:15/mediaqueries-5/'>23:27:15 PST</a></td><td>2021-02-21 23:26:51 PST</td><td><span>fantasai</span></td><td>fix: typos across specs (#5992)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d311b4c7e39063d9f812d4b85bcf3d16c7ed9c38/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-21T23:27:15/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-02-08</th><tr data-revised-hash='b0602c4c66ef99cc66f3fc8cbc078a0fcb61668e'><td><a href='/date/2021-02-08T11:41:48/mediaqueries-5/'>11:41:48 PST</a></td><td>2021-02-08 11:41:26 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>typo: Double words (#5951) Co-authored-by: Rachel Andrew <rachel.andrew@edgeofmyseat.com></td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b0602c4c66ef99cc66f3fc8cbc078a0fcb61668e/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-08T11:41:48/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><th colspan='5'>2021-02-02</th><tr data-revised-hash='f68579ca979599bb05b0f3546496511f27849a27'><td><a href='/date/2021-02-02T10:26:34/mediaqueries-5/'>10:26:34 PST</a></td><td>2021-02-02 10:26:02 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[css-values-4][mediaqueries-5] Clarify when minimum font sizes/etc are or aren't applied to relative units. Fixes #5858.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f68579ca979599bb05b0f3546496511f27849a27/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2021-02-02T10:26:34/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-17</th><tr data-revised-hash='0d7bc57a8768a9ed745023e0cb76ab1c94d85fe5'><td><a href='/date/2020-09-17T09:37:23/mediaqueries-5/'>09:37:23 PDT</a></td><td>2020-09-17 09:36:35 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td>[mq5] draft text for in-gamut MQ</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0d7bc57a8768a9ed745023e0cb76ab1c94d85fe5/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-09-17T09:37:23/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-21</th><tr data-revised-hash='d2f1892f31d068ca070d3c36c8d60ebed7012b57'><td><a href='/date/2020-11-21T01:45:38/mediaqueries-5/'>01:45:38 PST</a></td><td>2020-11-21 01:45:19 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Fix grammar typo in prefers-contrast advisement (#5739)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d2f1892f31d068ca070d3c36c8d60ebed7012b57/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-11-21T01:45:38/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-23</th><tr data-revised-hash='9b894edd42cff8bd25a4cfd624188a856a1ef49e'><td><a href='/date/2020-10-23T11:50:12/mediaqueries-5/'>11:50:12 PDT</a></td><td>2020-10-23 09:15:21 PDT</td><td><span title='Daniel Libby'>daniel_libby</span></td><td>Add Daniel Libby as mediaqueries-5 editor</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9b894edd42cff8bd25a4cfd624188a856a1ef49e/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-10-23T11:50:12/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-30</th><tr data-revised-hash='226072d2485b95b24d64bf2552196486ea2d8d6c'><td><a href='/date/2020-09-30T21:33:18/mediaqueries-5/'>21:33:18 PDT</a></td><td>2020-09-30 21:32:57 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Refactoring of the forced-colors and prefers-contrast media feature (#5434) This editorial reorganization of the text is intended to make the overlap between forced-colors:active and prefers-contrast:forced more readily understandable: one being the syntax that the CSS Working Group finds more desirable, the other being retained for compatibility with content issued against an earlier draft (see #3856). Prior to this refactoring, the definition of this mode was also spread between the two media features, causing confusion. This commits consolidates the whole thing in one place. Related to #5433</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/226072d2485b95b24d64bf2552196486ea2d8d6c/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-09-30T21:33:18/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-12</th><tr data-revised-hash='d43a77a218744d184ae8e27294182b849aff3dad'><td><a href='/date/2020-08-12T10:38:57/mediaqueries-5/'>10:38:57 PDT</a></td><td>2020-08-12 10:37:49 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Bikeshed tweak</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d43a77a218744d184ae8e27294182b849aff3dad/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-08-12T10:38:57/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-31</th><tr data-revised-hash='58ddc3ba53ba218ccdc508e3322fa39d1f7e1f7c'><td><a href='/date/2020-07-31T10:35:18/mediaqueries-5/'>10:35:18 PDT</a></td><td>2020-07-31 10:33:56 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Post publication update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/58ddc3ba53ba218ccdc508e3322fa39d1f7e1f7c/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-07-31T10:35:18/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-30</th><tr data-revised-hash='8c2bee3ef197abe88e0e97513e22fe4b95685efa'><td><a href='/date/2020-07-30T22:30:48/mediaqueries-5/'>22:30:48 PDT</a></td><td>2020-07-30 22:30:03 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Port L4 editorial tweak to L5 See c7bef3b78309d16409b4302f1fa916b0ce13a4f1 for the original</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/8c2bee3ef197abe88e0e97513e22fe4b95685efa/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-30T22:30:48/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='6d34d097e1afe79ee619693df85aab4e4772aa56'><td><a href='/date/2020-07-30T22:28:05/mediaqueries-5/'>22:28:05 PDT</a></td><td>2020-07-30 22:27:13 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries] Add date to historical retrospective. Closes #5339</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/6d34d097e1afe79ee619693df85aab4e4772aa56/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-30T22:28:05/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b9c5ae85fe5eb8196eee47682448d348b988496a'><td><a href='/date/2020-07-30T19:50:16/mediaqueries-5/'>19:50:16 PDT</a></td><td>2020-07-30 19:46:14 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Reorganize ToC to regroup related features</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b9c5ae85fe5eb8196eee47682448d348b988496a/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-30T19:50:16/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='a9ab0cdd2d66284a0448a59e2ae9eb2ed1f3174a'><td><a href='/date/2020-07-30T19:36:05/mediaqueries-5/'>19:36:05 PDT</a></td><td>2020-07-30 19:30:29 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Retire the 'light-level' media feature Closes #5359 Closes #1727</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/a9ab0cdd2d66284a0448a59e2ae9eb2ed1f3174a/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-30T19:36:05/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='fb97fd5ca1a605a3fafe22682b085412cd890800'><td><a href='/date/2020-07-30T18:22:07/mediaqueries-5/'>18:22:07 PDT</a></td><td>2020-07-30 18:19:52 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] prefers-reduced-data is a binary query Closes #4833</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fb97fd5ca1a605a3fafe22682b085412cd890800/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-30T18:22:07/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-24</th><tr data-revised-hash='f3c0b268af10de8911cf11021596c1aec1a3a9fc'><td><a href='/date/2020-07-24T03:30:15/mediaqueries-5/'>03:30:15 PDT</a></td><td>2020-07-24 03:27:25 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Update changes section</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f3c0b268af10de8911cf11021596c1aec1a3a9fc/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-24T03:30:15/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='494947f6e5e68daf4d2822df8bd2b84e2e04a4c0'><td><a href='/date/2020-07-24T03:13:40/mediaqueries-5/'>03:13:40 PDT</a></td><td>2020-07-24 03:11:57 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Move the 'inverted-colors' section Also, rephrase the title. This is something that happens forcibly, not a preference grouping it with prefers-* is was misleading. This change is editorial, none of the defining text has been changed.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/494947f6e5e68daf4d2822df8bd2b84e2e04a4c0/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-24T03:13:40/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='16ce0cbdbd435a9d9ff092debb88ba8838af1365'><td><a href='/date/2020-07-24T02:56:56/mediaqueries-5/'>02:56:56 PDT</a></td><td>2020-07-24 02:31:00 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Add "prefers-contrast:forced" Closes #3856</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/16ce0cbdbd435a9d9ff092debb88ba8838af1365/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-24T02:56:56/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-23</th><tr data-revised-hash='67d7fdab695f6da3e9c2e4c72cf1ec8a5de85ff5'><td><a href='/date/2020-07-23T19:08:46/mediaqueries-5/'>19:08:46 PDT</a></td><td>2020-07-23 19:08:01 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Fix typo Closes #5355</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/67d7fdab695f6da3e9c2e4c72cf1ec8a5de85ff5/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-23T19:08:46/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-15</th><tr data-revised-hash='4bdedb64061e3eae2092b8a461d9804403271882'><td><a href='/date/2020-07-15T10:10:39/mediaqueries-5/'>10:10:39 PDT</a></td><td>2020-07-15 10:09:16 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Update Previous URL</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4bdedb64061e3eae2092b8a461d9804403271882/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-15T10:10:39/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-13</th><tr data-revised-hash='26adfdebdfbaab8daaa425263ba9b6be2ba97e71'><td><a href='/date/2020-07-13T16:17:03/mediaqueries-5/'>16:17:03 PDT</a></td><td>2020-07-13 16:16:48 PDT</td><td><a href='https://tantek.com/'>tantek</a></td><td>s/Level 3/Level 4 Now that Level 5 includes all of Level 4, this can be updated in the abstract also</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/26adfdebdfbaab8daaa425263ba9b6be2ba97e71/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-13T16:17:03/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-10</th><tr data-revised-hash='f8da0d14c494d12a2ce67afe669fc4e8371de02b'><td><a href='/date/2020-07-10T02:01:20/mediaqueries-5/'>02:01:20 PDT</a></td><td>2020-07-10 01:56:20 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediqueries] Update ackowledgements</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f8da0d14c494d12a2ce67afe669fc4e8371de02b/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-07-10T02:01:20/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-04</th><tr data-revised-hash='9608a41ea910a769b9dedac6ab840850c3828185'><td><a href='/date/2020-07-04T16:45:01/mediaqueries-5/'>16:45:01 PDT</a></td><td>2020-07-04 16:44:28 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[mediaqueries-5] Unbreak the spec build now that CSS2 also provides an @media definition to bikeshed.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9608a41ea910a769b9dedac6ab840850c3828185/mediaqueries-5/Overview.bs'></a><a class='bikeshed previous' href='/date/2020-07-04T16:45:01/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f95277a37dfdf7fa9dc660ae434d372e0d95f625'><td><a href='/date/2020-07-04T15:20:05/mediaqueries-5/'>15:20:05 PDT</a></td><td>2020-07-04 15:19:38 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>[mediaqueries-5] Spell check.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f95277a37dfdf7fa9dc660ae434d372e0d95f625/mediaqueries-5/Overview.bs'></a><a class='bikeshed previous' href='/date/2020-07-04T15:20:05/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-22</th><tr data-revised-hash='96bb9d6ab16da7c3a21b0b27357fab71685073de'><td><a href='/date/2020-06-22T15:37:06/mediaqueries-5/'>15:37:06 PDT</a></td><td>2020-06-22 15:36:45 PDT</td><td><span title='Adam Argyle'>adam_argyle</span></td><td>adding top-level privacy note (#5219)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/96bb9d6ab16da7c3a21b0b27357fab71685073de/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-06-22T15:37:06/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-03</th><tr data-revised-hash='53437f507c0f2dbf30ccb04747ed2b36d8fbde0e'><td><a href='/date/2020-06-03T17:47:51/mediaqueries-5/'>17:47:51 PDT</a></td><td>2020-06-03 17:44:21 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Define "paged" and "continuous" media Closes #5019</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/53437f507c0f2dbf30ccb04747ed2b36d8fbde0e/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2020-06-03T17:47:51/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-02</th><tr data-revised-hash='7366f2c249694f7465831b17da0c1ce3adb8ba04'><td><a href='/date/2020-06-02T21:46:02/mediaqueries-5/'>21:46:02 PDT</a></td><td>2020-06-02 21:45:24 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Link to last published version</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/7366f2c249694f7465831b17da0c1ce3adb8ba04/mediaqueries-5/Overview.bs'></a><a class='bikeshed previous' href='/date/2020-06-02T21:46:02/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='f2c8037fe38354c06b326fbd62cbf509c63fd77d'><td><a href='/date/2020-06-02T19:53:12/mediaqueries-5/'>19:53:12 PDT</a></td><td>2020-06-02 19:52:22 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Update changelog</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/f2c8037fe38354c06b326fbd62cbf509c63fd77d/mediaqueries-5/Overview.bs'></a><a class='bikeshed previous' href='/date/2020-06-02T19:53:12/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-28</th><tr data-revised-hash='72e4ac9ee13dafefa5b41b75787f7d1b5d636f9a'><td><a href='/date/2020-05-28T16:26:46/mediaqueries-5/'>16:26:46 PDT</a></td><td>2020-05-28 16:26:20 PDT</td><td><span>fantasai</span></td><td>[mediaqueries-5] Fix authoring advice so future UAs don't fall into unknown territory. #3857 https://logs.csswg.org/irc.w3.org/css/2020-05-27/#e1319612 https://logs.csswg.org/irc.w3.org/css/2020-05-28/#e1319862</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/72e4ac9ee13dafefa5b41b75787f7d1b5d636f9a/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-05-28T16:26:46/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='d4f9b86854b5e9cb3c0ef1d8dbc971585eba9052'><td><a href='/date/2020-05-28T00:29:48/mediaqueries-5/'>00:29:48 PDT</a></td><td>2020-05-28 00:27:44 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[Mediaqueries] Move video-* and dynamic-range to L5 Closes #5042</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d4f9b86854b5e9cb3c0ef1d8dbc971585eba9052/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-05-28T00:29:48/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-27</th><tr data-revised-hash='d1aeace6ca2dbcaf4ec3299d87df4491d52b50ca'><td><a href='/date/2020-05-27T10:20:30/mediaqueries-5/'>10:20:30 PDT</a></td><td>2020-05-27 10:19:06 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td>[mediaqueries-5] Remove (prefers-color-scheme: no-preference) per WG resolution. Add a note explaining the removal, and another explaining the preferred usage of the feature.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d1aeace6ca2dbcaf4ec3299d87df4491d52b50ca/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-05-27T10:20:30/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-18</th><tr data-revised-hash='4c17653ae7f4ecd230fc58df9aaac398e1662421'><td><a href='/date/2020-03-18T01:27:29/mediaqueries-5/'>01:27:29 PDT</a></td><td>2020-03-18 01:26:50 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Update latest version link</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4c17653ae7f4ecd230fc58df9aaac398e1662421/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-03-18T01:27:29/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='3a1b816b2b5eba619adb1a93e03b186d6a973189'><td><a href='/date/2020-03-18T01:18:47/mediaqueries-5/'>01:18:47 PDT</a></td><td>2020-03-18 01:17:30 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Add inline issues Related to #4832, #4833, #4834</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/3a1b816b2b5eba619adb1a93e03b186d6a973189/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-03-18T01:18:47/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-04</th><tr data-revised-hash='e8f73abe4932cbcc17610ba7eabeb68d8f8eb342'><td><a href='/date/2020-03-04T08:54:15/mediaqueries-5/'>08:54:15 PST</a></td><td>2020-03-04 08:52:28 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>back to ED</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e8f73abe4932cbcc17610ba7eabeb68d8f8eb342/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2020-03-04T08:54:15/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-28</th><tr data-revised-hash='2bb3cc85359b403cfc1ccea6e9bc759a851d1f14'><td><a href='/date/2020-02-28T09:37:00/mediaqueries-5/'>09:37:00 PST</a></td><td>2020-02-28 08:47:40 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td>[mediaqueries-5] prepare for TR</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/2bb3cc85359b403cfc1ccea6e9bc759a851d1f14/mediaqueries-5/Overview.bs'></a><a class='bikeshed fatal' href='/date/2020-02-28T09:37:00/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-23</th><tr data-revised-hash='9adfadb6a2de8b6b63f1af86407c9d9dcd82f524'><td><a href='/date/2020-01-23T01:53:22/mediaqueries-5/'>01:53:22 PST</a></td><td>2020-01-23 01:53:04 PST</td><td><span title='Chen Hui Jing'>huijing</span></td><td>[css-mediaqueries] Add 'prefers-reduced-data' Closes #2370</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/9adfadb6a2de8b6b63f1af86407c9d9dcd82f524/mediaqueries-5/Overview.bs'></a><a class='bikeshed generating' href='/date/2020-01-23T01:53:22/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-16</th><tr data-revised-hash='efbbdc162534b25001db91f7871ad0b5edc05c90'><td><a href='/date/2019-08-16T16:50:29/mediaqueries-5/'>16:50:29 PDT</a></td><td>2019-08-16 16:48:54 PDT</td><td><span title='Dean Jackson'>dino</span></td><td>[mediaqueries-5] Clarify prefers-color-scheme. Fixes #3278.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/efbbdc162534b25001db91f7871ad0b5edc05c90/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-08-16T16:50:29/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-21</th><tr data-revised-hash='aeae54df46c6ebb6a115ee5730e926468cd99d56'><td><a href='/date/2019-05-21T09:33:29/mediaqueries-5/'>09:33:29 PDT</a></td><td>2019-05-21 08:42:29 PDT</td><td><span>fantasai</span></td><td>typo fix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/aeae54df46c6ebb6a115ee5730e926468cd99d56/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-05-21T09:33:29/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-19</th><tr data-revised-hash='575fad883a4ea208db755368b1e956cfa3acc8f5'><td><a href='/date/2019-04-19T17:56:54/mediaqueries-5/'>17:56:54 PDT</a></td><td>2019-04-19 17:55:54 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Clarify that inverted-colors is for non-smart pixel-level invert only</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/575fad883a4ea208db755368b1e956cfa3acc8f5/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-04-19T17:56:54/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='d19770909507b3327b498bc916c8f16fada2ffb2'><td><a href='/date/2019-04-19T16:36:29/mediaqueries-5/'>16:36:29 PDT</a></td><td>2019-04-19 16:36:10 PDT</td><td><span>fantasai</span></td><td>[mediaqueries-5] Add forced-colors MQ. #3807</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d19770909507b3327b498bc916c8f16fada2ffb2/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-04-19T16:36:29/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='b1d20ab2f32049d9411b636ec1f1fa528f46e36c'><td><a href='/date/2019-04-19T16:47:22/mediaqueries-5/'>16:47:22 PDT</a></td><td>2019-04-19 16:47:01 PDT</td><td><span>fantasai</span></td><td>[mediaqueries-5] Update Changes list.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/b1d20ab2f32049d9411b636ec1f1fa528f46e36c/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-04-19T16:47:22/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='879589eba690538a284e392eb90e03eecd39b8d7'><td><a href='/date/2019-04-19T16:25:22/mediaqueries-5/'>16:25:22 PDT</a></td><td>2019-04-19 16:25:03 PDT</td><td><span>fantasai</span></td><td>[mediaqueries-5] Update inlined issues.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/879589eba690538a284e392eb90e03eecd39b8d7/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2019-04-19T16:25:22/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='fbb736dc61363cfa272fe1acd7390c1b2f4c53c7'><td><a href='/date/2019-04-19T15:50:55/mediaqueries-5/'>15:50:55 PDT</a></td><td>2019-04-19 15:50:34 PDT</td><td><span>fantasai</span></td><td>[mediaqueries-5] Add note about how printing preferences aren't necessarily the same as screen preferences and maybe you want to consider the constraints of physical ink on paper. #3522</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/fbb736dc61363cfa272fe1acd7390c1b2f4c53c7/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2019-04-19T15:50:55/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-07-19</th><tr data-revised-hash='29f379eb42f7f3131a5adedd4356fc1088dcbcea'><td><a href='/date/2018-07-19T11:25:46/mediaqueries-5/'>11:25:46 PDT</a></td><td>2018-07-16 13:34:20 PDT</td><td><span title='Dean Jackson'>dino</span></td><td>[mediaqueries-5] Add initial versions of prefers-contrast and color-scheme</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/29f379eb42f7f3131a5adedd4356fc1088dcbcea/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-07-19T11:25:46/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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-06-27</th><tr data-revised-hash='0e51c50714564e4ae3eae07d5f36261caa065f52'><td><a href='/date/2018-06-27T18:17:07/mediaqueries-5/'>18:17:07 PDT</a></td><td>2018-06-27 18:16:41 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Bikeshed markup fix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/0e51c50714564e4ae3eae07d5f36261caa065f52/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2018-06-27T18:17:07/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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='dee7b41131a4291a0ac74ab27df4e5099ec13b3a'><td><a href='/date/2018-06-27T10:20:10/mediaqueries-5/'>10:20:10 PDT</a></td><td>2018-06-27 10:19:55 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Added the first proposal for a 'environment-blending' keyword. (#2719)</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dee7b41131a4291a0ac74ab27df4e5099ec13b3a/mediaqueries-5/Overview.bs'></a><a class='bikeshed link-error' href='/date/2018-06-27T10:20:10/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-11-15</th><tr data-revised-hash='802f0ddf120e8b81e0e3a8bfc88573c7e72ba87c'><td><a href='/date/2017-11-15T04:50:18/mediaqueries-5/'>04:50:18 PST</a></td><td>2017-11-15 04:49:23 PST</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Affiliation update</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/802f0ddf120e8b81e0e3a8bfc88573c7e72ba87c/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-11-15T04:50:18/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-11-09</th><tr data-revised-hash='22c9edc2d68b3ed8cfe65a52958ece5d2403284f'><td><a href='/date/2017-11-09T16:14:17/mediaqueries-5/'>16:14:17 PST</a></td><td>2017-11-09 16:12:58 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td>Add w3cid metadata for all editors. I got the uids from the "Edit status" links in https://www.w3.org/2000/09/dbwg/details?group=32061 and made the actual changes with a python script.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/22c9edc2d68b3ed8cfe65a52958ece5d2403284f/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-11-09T16:14:17/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-10-11</th><tr data-revised-hash='4cbad3e033737f640eb50bada9ec46682891b1d6'><td><a href='/date/2017-10-11T04:07:51/mediaqueries-5/'>04:07:51 PDT</a></td><td>2017-10-11 02:37:58 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries] Editorial fixes</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/4cbad3e033737f640eb50bada9ec46682891b1d6/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-10-11T04:07:51/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-09-15</th><tr data-revised-hash='5f215b10afb0c642f35784fc827b984acb07a1cf'><td><a href='/date/2017-09-15T04:39:32/mediaqueries-5/'>04:39:32 PDT</a></td><td>2017-09-15 04:39:20 PDT</td><td><span title='Simon Pieters'>spieters</span></td><td>[css-animations][css-conditional][css-font-loading][cssom-view][cssom][mediaqueries] IDL: Use [Exposed] consistently This is necessary for https://github.com/heycam/webidl/issues/365.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5f215b10afb0c642f35784fc827b984acb07a1cf/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-09-15T04:39:32/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-08-27</th><tr data-revised-hash='d45f3e2a35ad56ace20778336d1086c6e12dfd0c'><td><a href='/date/2017-08-27T11:17:17/mediaqueries-5/'>11:17:17 PDT</a></td><td>2017-08-27 11:16:00 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[css-mediaqueres] Fix example</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/d45f3e2a35ad56ace20778336d1086c6e12dfd0c/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-08-27T11:17:17/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-08-24</th><tr data-revised-hash='e965e267977dbadde82a4c70951d5a9c937dc0d0'><td><a href='/date/2017-08-24T00:53:37/mediaqueries-5/'>00:53:37 PDT</a></td><td>2017-08-24 00:52:41 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Fix specificity problem in example Closes #1756</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/e965e267977dbadde82a4c70951d5a9c937dc0d0/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-08-24T00:53:37/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-08-22</th><tr data-revised-hash='af424435ad5743ce23f779a87e9a96dc5b990f93'><td><a href='/date/2017-08-22T08:32:26/mediaqueries-5/'>08:32:26 PDT</a></td><td>2017-08-22 08:29:28 PDT</td><td><span title='Simon Pieters'>spieters</span></td><td>[css-animations][css-conditional][css-font-loading][cssom-view][cssom][mediaqueries] IDL: Use [Exposed] consistently This is necessary for https://github.com/heycam/webidl/issues/365.</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/af424435ad5743ce23f779a87e9a96dc5b990f93/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-08-22T08:32:26/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-08-11</th><tr data-revised-hash='5367d29bc3ff146ffb3209b9ff66dbd1dbe3eadc'><td><a href='/date/2017-08-11T14:52:56/mediaqueries-5/'>14:52:56 PDT</a></td><td>2017-08-10 19:00:21 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>Review: title change requested by @frivoal</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/5367d29bc3ff146ffb3209b9ff66dbd1dbe3eadc/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-08-11T14:52:56/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-06-05</th><tr data-revised-hash='dd550debc4e25825b3c960c8e2947a5caae98639'><td><a href='/date/2017-06-05T20:30:10/mediaqueries-5/'>20:30:10 PDT</a></td><td>2017-06-05 20:28:44 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries-5] Clarify what happens in case of multiple @custom-media Closes #1502</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/dd550debc4e25825b3c960c8e2947a5caae98639/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-06-05T20:30:10/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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'>2017-05-19</th><tr data-revised-hash='c7d0c41e03a907c62f1b442e68264add0acb8bad'><td><a href='/date/2017-05-19T01:07:30/mediaqueries-5/'>01:07:30 PDT</a></td><td>2017-05-19 01:02:22 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td>[mediaqueries] Bikeshed fix</td><td><a class='icon view' href='https://hg.csswg.org/drafts/diff/c7d0c41e03a907c62f1b442e68264add0acb8bad/mediaqueries-5/Overview.bs'></a><a class='bikeshed warning' href='/date/2017-05-19T01:07:30/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 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/mediaqueries-5/' method='get'><input disabled type='submit' value='First'></form><form accept-charset='utf-8' action='/history/mediaqueries-5/' method='get'><input disabled type='submit' value='Previous'></form><span>Page 1 of 2</span><form accept-charset='utf-8' action='/history/page/2/mediaqueries-5/' method='get'><input type='submit' value='Next'></form><form accept-charset='utf-8' action='/history/page/2/mediaqueries-5/' method='get'><input type='submit' value='Last'></form></div></div></body></html>