Re: Intent to implement and ship: Gamepad Extensions `multi touch` and `light indicator`

2019-03-25 Thread dmu
On Wednesday, March 20, 2019 at 7:10:54 PM UTC-7, Tom Ritter wrote: > > > > Example 1: Let’s say touchId is currently set to 0 and no fingers are > > > > touching the touchpad. When a finger touches the touchpad, touchId of > > > > this event would be 1. As that finger moves around the

Re: Intent to implement and ship: Gamepad Extensions `multi touch` and `light indicator`

2019-03-25 Thread dmu
On Friday, March 22, 2019 at 9:56:20 AM UTC-7, Martin Thomson wrote: > On Thu, Mar 21, 2019 at 1:11 PM Tom Ritter wrote: > > > Okay, good, not making this data available until the user activity > > engages with the gamepad/VR controller (mostly) assuages my concerns > > on this component. My

Re: How to reliably make an ArrayBufferView wrapped?

2019-03-25 Thread violet . bugreport
Thank you for the detailed explanation! It works. ___ dev-platform mailing list dev-platform@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-platform

How to reliably make an ArrayBufferView wrapped?

2019-03-25 Thread violet . bugreport
When solving this bug https://phabricator.services.mozilla.com/D24009. I need to write a test. The bug is basically caused by overlooking the possible wrapper around an ArrayBufferView that is checked by JS_IsArrayBufferViewObject(). See

[desktop] Bugs logged by Desktop Release QA in the last 7 days

2019-03-25 Thread Mihai Boldan
Hello, Here's the list of new issues found and filed by the Desktop Release QA team in the last 7 days. Additional details on the team's priorities last week, as well as the plans for the current week are available at: http://tinyurl.com/yycedh6z. Bugs logged by Desktop Release QA in the last

hg/git hooks for clang-format

2019-03-25 Thread Sylvestre Ledru
We have now clang format hooks/extension for hg and git. Both work in the same way: at commit phase, they will automatically run "mach clang-format " (which is now executing in

Re: How to reliably make an ArrayBufferView wrapped?

2019-03-25 Thread Boris Zbarsky
On 3/25/19 4:22 AM, violet.bugrep...@gmail.com wrote: In the test, I want to make sure the object is indeed a wrapped one. Is there a reliable way to write JavaScript code to achieve this? Are you trying to write a JS shell test or a browser test? -Boris

Re: How to reliably make an ArrayBufferView wrapped?

2019-03-25 Thread Boris Zbarsky
On 3/25/19 11:22 AM, violet.bugrep...@gmail.com wrote: I think it should be a browser test, because I need to call IndexedDB. OK, makes sense. In that case, the simplest option is to pick a browser test that involves Xray wrappers and modify it so you have an Xray to an ArrayBufferView.

Re: sccache as ccache

2019-03-25 Thread Jonathan Watt
On 26/07/2017 16:19, Botond Ballo wrote: > On Wed, Jul 26, 2017 at 9:05 AM, Ted Mielczarek wrote: >> If you build Firefox on Linux or OS X you can (and >> should) use sccache in place of ccache for local development. > > Can sccache be used in conjunction with icecc [1]? > > I currently use the

Re: How to reliably make an ArrayBufferView wrapped?

2019-03-25 Thread violet . bugreport
> Are you trying to write a JS shell test or a browser test? I think it should be a browser test, because I need to call IndexedDB. ___ dev-platform mailing list dev-platform@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-platform