Re: B2G emulator issues

2014-05-23 Thread JW Wang
On Tuesday, April 8, 2014 11:45:15 PM UTC+8, Mike Habicher wrote: In my experience running tests locally, a single mochitest run on the ARM emulator (hardware: Thinkpad X220, 16GB RAM, SSD) where everything was built with 'B2G_DEBUG=0 B2G_NOOPT=0' will run in 2 to 3 minutes. The same test,

Re: OMTC on Windows

2014-05-23 Thread Marco Zehe
Hi all, for a couple of days on Nightly, I am seeing an increasing number of WM_GETOBJECT message response failures, causing in intermittent accessibility failures. I know for a fact that nothing in our code changed recently that could cause this, so I was wondering if OMTC could be responsible?

Re: OMTC on Windows

2014-05-23 Thread Marco Zehe
For reference -- if this is applicable --, these failures are tracked in bug 1014673: https://bugzilla.mozilla.org/show_bug.cgi?id=1014673 Marco On 23.05.2014 09:10, Marco Zehe wrote: Hi all, for a couple of days on Nightly, I am seeing an increasing number of WM_GETOBJECT message response

Re: Intent to implement: CSSOM-View scroll-behavior property

2014-05-23 Thread Jonas Sicking
On Thu, May 22, 2014 at 1:50 PM, Kip Gilbert kgilb...@mozilla.com wrote: Link to standard: http://dev.w3.org/csswg/cssom-view/#smooth-scrolling:-the-%27scroll-behavior%27-property How will scroll-behavior: instant work on platforms that use APZ? I worry about authors expect it to enable them

Re: Intent to implement: CSSOM-View scroll-behavior property

2014-05-23 Thread Ben Kelly
On 5/23/2014 6:12 AM, Jonas Sicking wrote: That isn't possible with APZ since the user might be actively scrolling and so if we just do something like div.scrollTop += hightOfNewContent; then the newly set scroll position will be based off of an old value which has already changed on the

Re: Intent to implement: CSSOM-View scroll-behavior property

2014-05-23 Thread Robert O'Callahan
On Fri, May 23, 2014 at 10:12 PM, Jonas Sicking jo...@sicking.cc wrote: How will scroll-behavior: instant work on platforms that use APZ? I worry about authors expect it to enable them to do a bunch of DOM mutations and then set the scroll position and allow them to be sure that rendering

Will we ever get element queries in browsers?

2014-05-23 Thread Chris Mills
I was just thinking about element queries[1] again, recalling all the discussion on it from some time ago. Has thinking on this advanced at all in more recent times? Do you think we’ll ever see element queries native in browsers? Chris Mills Senior tech writer || Mozilla

Re: Will we ever get element queries in browsers?

2014-05-23 Thread Robin Berjon
On 23/05/2014 15:23 , Chris Mills wrote: I was just thinking about element queries[1] again, recalling all the discussion on it from some time ago. Has thinking on this advanced at all in more recent times? Do you think we’ll ever see element queries native in browsers? There clearly is demand

Re: Follow up on clang-format

2014-05-23 Thread Kartikaya Gupta
I tried using clang-format on entire files and I noticed two things (there might be others, I didn't look too closely): 1) When it reformats comments to fit in the line length, it just inserts linebreaks rather than rewrapping the text. So you end up with text like this, where the last couple

Re: Intent to implement: CSSOM-View scroll-behavior property

2014-05-23 Thread Kartikaya Gupta
On 23/5/2014, 6:12, Jonas Sicking wrote: Basically we need an API like div.addToScrollPosition(hightOfNewContent); This would allow the browser to send this delta to the compositing thread along with the newly updated painting of the DOM. This is certainly a valid use case, and it has come