Re: Intent to ship: RC4 disabled by default in Firefox 44

2015-09-14 Thread Daniel Holbert
On 09/01/2015 09:56 AM, Richard Barnes wrote: > # Compatibility impact > > Disabling RC4 will mean that Firefox will no longer connect to servers that > require RC4. The data we have indicate that while there are still a small > number of such servers, Firefox users encounter them at very low rat

Re: MOZ_RAII has landed on inbound

2015-09-14 Thread Aaron Klotz
Can you please update https://developer.mozilla.org/en-US/docs/Using_RAII_classes_in_Mozilla with this information? Thanks, Aaron On 9/12/2015 3:06 PM, Michael Layzell wrote: Hey everyone, Bug 1201190 (https://bugzilla.mozilla.org/show_bug.cgi?id=1201190) just landed on inbound, which means

Re: mach mozregression command

2015-09-14 Thread Gregory Szorc
On Mon, Sep 14, 2015 at 11:01 AM, William Lachance wrote: > On 2015-09-14 1:17 PM, Benjamin Smedberg wrote: > >> Does this command work by downloading nightly/hourly builds (the way >> mozregression typically works) or by doing local builds at various >> changesets and getting a local source regr

Re: Is there any events before loading a URL to a docshell.

2015-09-14 Thread Mike Conley
Hey Yonggang, You might find nsIWebProgressListener useful: https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIWebProgressListener Specifically the onLocationChange method. This is fired once we've determined that we're going to load a new URI for a DOM Window. Fr

Re: mach mozregression command

2015-09-14 Thread William Lachance
On 2015-09-14 1:17 PM, Benjamin Smedberg wrote: Does this command work by downloading nightly/hourly builds (the way mozregression typically works) or by doing local builds at various changesets and getting a local source regression range? The former. It's basically just a convenience wrapper f

Re: MOZ_RAII has landed on inbound

2015-09-14 Thread Bobby Holley
This is totally awesome - thank you mystor! On Sat, Sep 12, 2015 at 2:06 PM, Michael Layzell wrote: > Hey everyone, > > Bug 1201190 (https://bugzilla.mozilla.org/show_bug.cgi?id=1201190) just > landed on inbound, which means that we now have access to the new > annotation MOZ_RAII. This is a sta

Re: mach mozregression command

2015-09-14 Thread Benjamin Smedberg
Does this command work by downloading nightly/hourly builds (the way mozregression typically works) or by doing local builds at various changesets and getting a local source regression range? --BDS On 9/14/2015 12:43 PM, Julien Pagès wrote: Hey everyone, I'm pleased to announce that we just

mach mozregression command

2015-09-14 Thread Julien Pagès
Hey everyone, I'm pleased to announce that we just added a "mach mozregression" command that allow to run mozregression (a regression range finder for Mozilla nightly and inbound builds) directly from your checkout of mozilla-central. To learn more about how to use it, just run: ./mach mozregress

Re: Operating CSS font parsing and associated font objects all usable from worker threads.

2015-09-14 Thread Cameron McCormack
Vincent Liu: > Recently I was working on 2d Canvas operating from Worker thread. I got an > assertion when I operated the below method for Canvas in worker thread. It > is caused by thread competing in nsCSSParser object for operating > ParseColorString(). > >ctxworker.fillStyle = '#8E

Operating CSS font parsing and associated font objects all usable from worker threads.

2015-09-14 Thread Vincent Liu
Hi All, ​Recently I was working on 2d Canvas operating from Worker thread. I got an assertion when I operated the below method for Canvas in worker thread. It is caused by thread competing in nsCSSParser object for operating ParseColorString(). ctxworker.fillStyle = '#8ED6FF'; Unfortu