Web APIs documentation meeting 10 AM PST on Friday!

2015-02-04 Thread Eric Shepherd
The Web APIs documentation meeting is Friday at 10 AM Pacific Time (see http://bit.ly/APIdocsMDN for your time zone). Everyone's welcome to attend; if you're interested in ensuring that all Web APIs are properly documented, we'd love your input. We have an agenda, as well as details on how to

Re: MSE WebM/VP9 enabled on nightly

2015-02-04 Thread ildella
On Friday, October 24, 2014 at 5:06:22 PM UTC+2, Anthony Jones wrote: I just wanted to give a heads up to everyone that we enabled Media Source Extensions on nightly for WebM/VP9. This brings Adaptive Streaming capability to Firefox video playback. The feature is not complete so the pref will

Re: HTTP/2 and User-Agent strings?

2015-02-04 Thread Gervase Markham
On 28/01/15 15:45, Gijs Kruitbosch wrote: That's IE11, which is not the same as Spartan. Hmm. I'm surprised that having managed to trim down the UA for IE 11 to be not old IE, standards compliant stuff please, they then take the opposite approach with Spartan, when they want to send basically

FYI - gitmirror.m.o duplicate repositories will be removed Feb 16

2015-02-04 Thread Hal Wine
tl;dr: if you reference git://gitmirror.mozilla.org/mozilla-b2g/gaia, please change to git://git.mozilla.org/releases/gaia.git gitmirror.mozilla.org gets overloaded from time to time. To reduce load, we will be removing dead repositories and repositories already mirrored to git.mozilla.org.

Re: Intent to ship: CSS display:contents

2015-02-04 Thread Daniel Holbert
Correct. Conceptually, the div exists in the style tree (so e.g. your text-align:center style gets inherited to the h1, via the style system, and any other inherited properties or div * { style rules would affect the children as well). But the div does not exist in the box tree. It's replaced

Re: Tree Status Addon

2015-02-04 Thread Jordan Santell
Ah, great, I will be checking this out as well! On Wed, Feb 4, 2015 at 1:44 PM, Martin Thomson m...@mozilla.com wrote: I've been using TreeStat by Adam Roach for a while: https://addons.mozilla.org/en-US/firefox/addon/treestat/?src=api On Thu, Feb 5, 2015 at 7:53 AM, Jordan Santell

Re: Intent to ship: CSS display:contents

2015-02-04 Thread Jonas Sicking
On Mon, Feb 2, 2015 at 1:33 PM, L. David Baron dba...@dbaron.org wrote: On Monday 2015-02-02 11:27 -0800, paul.ir...@gmail.com wrote: Hey Mats, the use cases are not obvious to me, but I didn't follow the original www-style threads on this so I'm lacking context. (A the spec doesn't help

Re: Tree Status Addon

2015-02-04 Thread Xidorn Quan
An addon for checking tree status is always something useful, thanks for working on this! Comparing the two addons, I'd prefer Tree Status Addon by Jordan here, because it does not request restart, which means I can enable it only when I'm going to push and indeed need to monitor the tree status.

Re: Tree Status Addon

2015-02-04 Thread Martin Thomson
I've been using TreeStat by Adam Roach for a while: https://addons.mozilla.org/en-US/firefox/addon/treestat/?src=api On Thu, Feb 5, 2015 at 7:53 AM, Jordan Santell jsant...@mozilla.com wrote: Hey all, If anyone's interested, I made an addon that lets you select an integration tree (fx-team,

Tree Status Addon

2015-02-04 Thread Jordan Santell
Hey all, If anyone's interested, I made an addon that lets you select an integration tree (fx-team, try, mozilla-inbound, etc) and a polling interval, and updates an icon in the status bar with its status. If the state changes (from open to close, close to open), a notification pops up letting you

Re: Intent to ship: CSS display:contents

2015-02-04 Thread Mats Palmgren
On 02/04/2015 08:20 PM, cmzieba...@gmail.com wrote: I am trying to set up a CodePen to test this feature: http://codepen.io/WebDevCA/pen/vEeMjx If I understand display:contents properly then if it is working the green border around the DIV can't be seen but the contents of the H1 inside that

Some more PLDHashTable API tweaks

2015-02-04 Thread Nicholas Nethercote
Hi, I just landed the patches in https://bugzilla.mozilla.org/show_bug.cgi?id=1050035. They affect PLDHashTable's API in the following ways. - PLDHashTable now allocates its entry storage lazily. (nsTHashtable and friends do too, since they are just layers on top of PLDHashTable.) This is a

Re: HTTP/2 and User-Agent strings?

2015-02-04 Thread Karl Dubost
Gervase, Le 4 févr. 2015 à 18:53, Gervase Markham g...@mozilla.org a écrit : Hmm. I'm surprised that having managed to trim down the UA for IE 11 to be not old IE, standards compliant stuff please, they then take the opposite approach with Spartan, when they want to send basically the same

Re: Tree Status Addon

2015-02-04 Thread Jordan Santell
Probably 34, as it uses some shortcut features added then in the SDK, but what's on AMO is 35, I believe, as I just tested up to current release On Wed, Feb 4, 2015 at 6:52 PM, Giovanny Gongora gio...@mozilla-hispano.org wrote: What is the minimum Firefox version? Because I am using 33 and it

Re: MSE WebM/VP9 enabled on nightly

2015-02-04 Thread Chris Double
ilde...@gmail.com writes: That's great news. Does it mean we can expect to see VP9 working in Firefox 37? Even on Linux? Cause as for Firefox 35 on UBuntu 14.10 I still MSE and VP9 disabled here: http://www.youtube.com/html5 The plan for MSE has changed a bit since Anthony's post. We are

Re: Tree Status Addon

2015-02-04 Thread Giovanny Gongora
What is the minimum Firefox version? Because I am using 33 and it says on AMO that is not available for my Firefox version. 2015-02-04 17:13 GMT-05:00 Xidorn Quan quanxunz...@gmail.com: An addon for checking tree status is always something useful, thanks for working on this! Comparing the

Range-based for loops

2015-02-04 Thread Xidorn Quan
Since the minimum supported GCC version was bumped to 4.6, the last barrier for us to use range-based for loop from the compiler side has been removed [1]. Now I want to remove the barrier in our lib side. I just landed bug 1126552 [2], bug 1127044 [3], and bug 1126701 [4] in mozilla-inbound.