Intent to ship: CSS Scroll Snapping on B2G / Firefox OS

2015-03-02 Thread Kearwood Kip Gilbert
As of March 3, 2014 I intend to turn on by default CSS Scroll Snapping on B2G. It has been developed behind the layout.css.scroll-snap.enabled preference. Firefox is the first UA to ship this feature. Platform coverage: Initially, this will be enabled only on B2G (Firefox OS). Desktop

MemShrink Meeting - Tuesday, 3 Mar 2015 at 2:00pm PST

2015-03-02 Thread Jet Villegas
The next Memshrink meeting is is brought to you by the Shumway project: http://www.areweflashyet.com/shumway/ The wiki page for this meeting is at: https://wiki.mozilla.org/Performance/MemShrink Agenda: * Review Shumway memory reports/usage * Prioritize unprioritized MemShrink bugs. * Discuss

Re: Proposed W3C Charters: All Groups, Web Accessibility Initiative (WAI)

2015-03-02 Thread Karl Dubost
Anne, David, Le 3 mars 2015 à 05:15, Anne van Kesteren ann...@annevk.nl a écrit : 1) Stop any kind of Member-only activity. Require coordination and discussion in public. It seems it's part of their intent without stopping totally. Some groups indeed seem to be in between In

Re: Intent to implement: CSS Grid Layout Module Level 1

2015-03-02 Thread delebash
On Monday, February 2, 2015 at 5:20:21 PM UTC-5, Mats Palmgren wrote: Summary: CSS Grid defines a two-dimensional grid-based layout system, optimized for user interface design. In the grid layout model, the children of a grid container can be positioned into arbitrary slots in a flexible or

Re: Intent to ship: MouseEvent.offsetX/Y

2015-03-02 Thread Robert O'Callahan
On Tue, Mar 3, 2015 at 8:49 AM, Mike Taylor mi...@mozilla.com wrote: On 3/1/15 17:58, smaug wrote: Haven't changes from integer to doubles caused issues in some cases. Boris might recall some examples. IE just reverted from using doubles on MouseEvent for compat reasons:

Test Informant Report - Week ending Feb 28

2015-03-02 Thread Test Informant
Test Informant report for 2015-02-28. State of test manifests at revision eea6188b9b05. Using revision 86d2bb8bb1c9 as a baseline for comparisons. Showing tests enabled or disabled between 2015-02-22 and 2015-02-28. 85% of tests across all suites and configurations are enabled. Summary ---

Re: Propose to remove nsAString::AssignLiteral(const char (aStr)[N])

2015-03-02 Thread smaug
On 03/02/2015 02:41 PM, Jeff Muizelaar wrote: It looks like the current one should already be as the the AssignASCII will be inlined into the caller and then the strlen can be inlined as well. Well AssignLiteral doesn't use strlen at all and that is the whole point of AssignLiteral. Can some

Re: Propose to remove nsAString::AssignLiteral(const char (aStr)[N])

2015-03-02 Thread Jeff Muizelaar
It looks like the current one should already be as the the AssignASCII will be inlined into the caller and then the strlen can be inlined as well. -Jeff On Sun, Mar 1, 2015 at 7:04 PM, smaug sm...@welho.com wrote: On 03/02/2015 01:11 AM, Xidorn Quan wrote: On Mon, Mar 2, 2015 at 9:50 AM,

Intent to ship *on pre-release channels* : vertical text support (CSS writing-mode and related properties)

2015-03-02 Thread Jonathan Kew
See [1] for additional background on this feature. We are aiming to enable support for CSS writing-mode and related features (i.e. vertical text support) in Gecko 39.[2] This will be enabled behind an #ifndef RELEASE_BUILD condition, so that for the time being, these features will be

Re: Propose to remove nsAString::AssignLiteral(const char (aStr)[N])

2015-03-02 Thread Neil
Xidorn Quan wrote: The method name AssignLiteral can easily make people at the callee side think it makes the string point to a piece of static data, which has no runtime penalty. But this is false. Actually nsACString::AssignLiteral used to copy too until I fixed it last year. Hence I

Re: Syncing 2 scrolling operations

2015-03-02 Thread kgupta
On Sat, Feb 28, 2015 at 3:47 AM, Paul Rouget pa...@mozilla.com wrote: How much work is that? Is it just a matter of piping things together to expose an JS method to privileged code? Not really - I think we would have to add new APIs to manipulate the layer tree of child processes from the

Proposed W3C Charter: WebRTC Working Group

2015-03-02 Thread L. David Baron
The W3C is proposing a revised charter for: Web Real-Time Communications Working Group http://www.w3.org/2015/02/webrtc-charter.html https://lists.w3.org/Archives/Public/public-new-work/2015Feb/0004.html Mozilla has the opportunity to send comments or objections through Friday, March 13.

Proposed W3C Charters: All Groups, Web Accessibility Initiative (WAI)

2015-03-02 Thread L. David Baron
The W3C is proposing revised charters for nearly all of the working groups in the Web Accessibility Initiative (all except Independent User Interface): https://lists.w3.org/Archives/Public/public-new-work/2015Feb/0007.html Accessible Platform Architectures Working Group (APA WG) (Formerly

Re: Intent to ship: MouseEvent.offsetX/Y

2015-03-02 Thread Mike Taylor
On 3/1/15 17:58, smaug wrote: Haven't changes from integer to doubles caused issues in some cases. Boris might recall some examples. IE just reverted from using doubles on MouseEvent for compat reasons: https://www.w3.org/Bugs/Public/show_bug.cgi?id=28029#c6 -- Mike Taylor Web Compat,

Re: Proposed W3C Charters: All Groups, Web Accessibility Initiative (WAI)

2015-03-02 Thread Anne van Kesteren
On Mon, Mar 2, 2015 at 7:57 PM, L. David Baron dba...@dbaron.org wrote: Please reply to this thread if you think there's something we should say as part of this charter review, or whether you think we should explicitly abstain. (Note that we can only explicitly abstain from the set of

Re: Intent to ship: MouseEvent.offsetX/Y

2015-03-02 Thread Robert O'Callahan
On Mon, Mar 2, 2015 at 7:00 PM, Chris Peterson cpeter...@mozilla.com wrote: Gecko's offsetX/Y could return doubles, for compatibility with the spec, that are always snapped to whole numbers, for compatibility with other browsers. Or Gecko could add random noise to the low bits of offsetX/Y