Re: Announcing new test platform "Android 7.0 x86"

2018-11-04 Thread Jim Chen
These tests run under normal GeckoView e10s mode, with one parent activity process and one child service process. It should be very similar to desktop e10s tests in terms of what tests run in which process. Cheers, Jim On Sat, Nov 3, 2018, 4:01 AM Ehsan Akhgari wrote: > Thanks a lot, this is

Use android-api-15 instead of android-api-11 on try

2016-01-30 Thread Jim Chen
Hi all, Just a heads-up that, because of the recent API version bump, try runs should now use "android-api-15". Using "android-api-11" will not run any tests (though I wished the hg hook would tell you about it). I filed bug 1244463 to fix the trychooser. Cheers, Jim

Re: Rust and Servo training sessions at Whistler

2015-06-08 Thread Jim Chen
Does the Servo session (which is earlier than the Rust session) require prior experience with Rust? Thanks, Jim On 6/8/15 3:44 PM, Lars Bergstrom wrote: The Research team will be holding a pair of 3 hour training sessions, with one on the new web rendering engine, Servo, and one on the new

Re: Should we build a new in-process unwind library?

2014-01-02 Thread Jim Chen
This is great! Thanks for working on it! Can the new library be used independently outside of SPS? For hang detection (bug 909974) we'd like to have the ability to unwind the hung thread's stack, and this library would be perfect for that. Cheers, Jim On 12/19/13 2:04 PM, Julian Seward wrote:

Problem with scrollWidth and clientWidth for text inputs

2013-10-22 Thread Jim Chen
Hello, I'm running into some problems working on bug 717878, which fixes scrollLeft/LeftMax/Top/TopMax/Width/Height for text inputs so that we can support panning the inputs in Fennec when they overflow. Currently, scrollLeft/LeftMax/Top/TopMax are all 0 and scrollWidth == clientWidth always for

Re: Problem with scrollWidth and clientWidth for text inputs

2013-10-22 Thread Jim Chen
Hm my bug shouldn't affect bug 157846, but a fix for bug 157846 might solve my problem as well. Thanks for the heads up! On 10/22/13 12:52 PM, Ehsan Akhgari wrote: Hmm, how does this work interact with bug 157846? On 2013-10-22 12:08 PM, Jim Chen wrote: Hello, I'm running into some

Hang monitoring for non-main threads

2013-09-30 Thread Jim Chen
Hi all, I'm looking at implementing a hang monitoring mechanism for non-main threads. The initial motivation was that we've been noticing hangs on the compositor thread in Fennec. These hangs are not as easy to notice as main thread hangs, and we'd like more information about them like how

Re: Tegra build backlog is too big!

2013-09-11 Thread Jim Chen
Do we know why it's that much backed up? I started noticing it yesterday. Is it because of lots of inbound pushes? lots of try pushes? Lots of clobbering? Lots of tests? Jim On 9/11/13 5:31 PM, Kartikaya Gupta wrote: Earlier today the backlog on Android build jobs was on the order of 1300. It

Re: How to observe selection range within input element

2013-08-28 Thread Jim Chen
Hi Xulei, I think you can use nsISelectionPrivate::addSelectionListener [1]. You can get nsISelectionPrivate through QueryInterface on nsISelection, which you can get from nsIEditor. Cheers, Jim [1] http://mxr.mozilla.org/mozilla-central/source/content/base/public/nsISelectionPrivate.idl#52