Re: New and improved stack-fixing

2020-05-06 Thread Markus Stange
On Wed, May 6, 2020 at 6:44 AM Gabriele Svelto wrote: > On 05/05/20 23:38, Nicholas Nethercote wrote: > > As for why that check is there... do opt builds produce any stack traces > in > > tests? Normal assertions aren't enabled on opt builds, but > > diagnostic/release assertions are. I can't

Re: New and improved stack-fixing

2020-05-05 Thread Markus Stange
On Fri, Mar 6, 2020 at 12:13 AM Nicholas Nethercote wrote: > - On opt builds you won't get symbolication on any platform. > Are there plans to make this work? Does this apply to "optimized debug builds"? -Markus ___ dev-platform mailing list

Re: Must we rebuild all our rust code constantly?

2019-08-20 Thread Markus Stange
On 2019-08-19 8:11 p.m., Dave Townsend wrote: Thanks to a tip I've tracked this down. This seems to only be the case when I have sccache enabled. Disabling it gives me nice quick incremental builds again. What's your sccache version? I think you may be hitting the following sccache bug which

Re: Performance profiling improvements #3

2018-12-10 Thread Markus Stange
On 2018-10-22 5:20 p.m., Panos Astithas wrote: # Import native `perf` traces We now have documentation for viewing `perf` profiles at: https://perf-html.io/docs/#/./guide-perf-profiling -Markus ___ dev-platform mailing list

Re: Default Rust optimization level decreased from 2 to 1

2017-10-30 Thread Markus Stange
On 2017-10-25 1:34 PM, Gregory Szorc wrote: Adding --enable-release to your mozconfig (the configuration for builds we ship to users) enables -Copt-level=2. (i.e. we didn't change optimization settings for builds we ship to users.) I've added a note about this to our benchmarking instructions

Re: Intent to ship: IntersectionObserver API

2017-03-15 Thread Markus Stange
On 2017-03-15 1:32 PM, Tobias Schneider wrote: 2.2) No signals from Safari that I know of. Simon Fraser has implemented part of it in https://bugs.webkit.org/show_bug.cgi?id=159475 , but things appear to have stalled. He also filed quite a few spec bugs in the process:

Re: Common crashes due to MOZ_CRASH and MOZ_RELEASE_ASSERT

2016-05-31 Thread Markus Stange
On 2016-05-31 2:22 AM, Nicholas Nethercote wrote: 9 MOZ_RELEASE_ASSERT(sAliveDisplayItemDatas && sAliveDisplayItemDatas->Contains(aData)) 263 0.02 % This one is https://bugzilla.mozilla.org/show_bug.cgi?id=1141089 . -Markus ___ dev-platform

Re: Requiring SSE2 on all 32-bit x86 OSs

2016-05-18 Thread Markus Stange
On 2016-05-18 1:32 PM, Benjamin Smedberg wrote: - Other platform code that does dynamic SSE2 detection. For example, image decoders which we compiler in both SSE2 and non-SSE2 configs currently, and select the codepath at runtime. - I imagine we'd like to remove this complexity

Re: Intent to implement and ship: "passive" option for AddEventListenerOptions

2016-05-05 Thread Markus Stange
On 2016-05-05 3:21 PM, Justin Dolske wrote: How will a developer know when it would be worthwhile to mark their event listener as passive? Do we perhaps log something to the console? The Chrome devtools have two features to help with this: They have a checkbox for "Show scrolling perf issues"

Intent to implement and ship: CSS and SVG filters for canvas 2D

2015-06-15 Thread Markus Stange
Summary: The filter property on CanvasRenderingContext2D allows authors to specify a filter that will get applied during canvas drawing. It accepts the same values as the CSS filter property, so CSS filter shorthand functions, references to SVG filters, and chained combinations of the two.

Re: Intent to implement and ship: CSS and SVG filters for canvas 2D

2015-06-15 Thread Markus Stange
On 2015-06-15 8:15 PM, Robert O'Callahan wrote: On Tue, Jun 16, 2015 at 11:23 AM, Robert O'Callahan rob...@ocallahan.org wrote: I think we're not quite there yet, but we're very close. There are two things I want before we ship: -- Get normative spec text up somewhere. -- Get a signal from

Re: How to setting border-radius for window without the default style.

2014-07-21 Thread Markus Stange
On 21.07.14 13:33, Yonggang Luo wrote: I am trying to remove the default style for tag window / but failed to setting the radius. Setting a border radius on the root element is not supported. You'll need to make the window element transparent and add a wrapper element (like vbox) that you

Re: How to setting border-radius for window without the default style.

2014-07-21 Thread Markus Stange
On 21.07.14 14:59, Boris Zbarsky wrote: On 7/21/14, 8:36 AM, Markus Stange wrote: On 21.07.14 13:33, Yonggang Luo wrote: I am trying to remove the default style for tag window / but failed to setting the radius. Setting a border radius on the root element is not supported. In XUL, right

Re: Retina display support

2014-06-03 Thread Markus Stange
On 03.06.14 10:24, bhargava.animes...@gmail.com wrote: Ok. I'll work to integrate sdk version =18 and see if that works. Just curious as to how it is working in one application. Any idea? Maybe the application where it's working has hardware acceleration disabled, and it somewhat works by

Re: Retina display support

2014-06-02 Thread Markus Stange
On 02.06.14 08:42, bhargava.animes...@gmail.com wrote: Hi Markus, We already have this setting in Info.plist of app. I have tried both values NSApplication and GeckoNSApplication but no effect . Is there anything else that needs to be done. Is gfx.hidpi.enabled set to 2? Other than that I

Re: Retina display support

2014-06-02 Thread Markus Stange
On 02.06.14 22:10, Philipp Wagner wrote: Am 30.05.2014 08:38, bhargava.animes...@gmail.com wrote: Hi, I have two different applications , both of them use gecko SDK version 2.0 for embedded browser. That's Firefox 4, isn't it? Are you sure that retina support is already available in this

Re: Retina display support

2014-05-30 Thread Markus Stange
On 30.05.14 08:38, bhargava.animes...@gmail.com wrote: Hi, I have two different applications , both of them use gecko SDK version 2.0 for embedded browser. On retina machine , one of the applications shows clear retina supported text while other browser on other application shows blurred

Re: Subpixel AA text rendering on OSX

2014-02-05 Thread Markus Stange
On 04.02.14 23:54, Karl Tomlinson wrote: On Tue, 21 Jan 2014 12:27:12 -0500, Jeff Muizelaar wrote: [...] OS X supports drawing subpixel-AA to partially transparent surfaces. I believe the amount of sub pixel AA depends on the alpha of the surface. (Imagine drawing sub-pixel aa text to a

Re: Proposal to make Firefox open in the foreground on Mac when launched from terminal

2013-07-10 Thread Markus Stange
On 30.05.13 00:09, Ehsan Akhgari wrote: So I'd like to ask, if you care about this, which way would _you_ have as the default? Definitely with -foreground. At the moment I always add it manually. -Markus ___ dev-platform mailing list